complete story 14.6

This commit is contained in:
Naser Mansour
2026-01-09 17:26:54 +02:00
parent 49aeceb25c
commit 31a4a47849
5 changed files with 100 additions and 20 deletions
+17 -4
View File
@@ -12,10 +12,23 @@
<!-- Contact Information -->
<div class="text-center sm:text-start">
<h3 class="text-off-white font-semibold mb-3">{{ __('footer.contact') }}</h3>
<address class="text-cta text-sm not-italic space-y-1">
<p>{{ __('footer.address') }}</p>
<p><span class="ltr-inline">{{ __('footer.phone') }}</span></p>
<p><span class="ltr-inline">{{ __('footer.email') }}</span></p>
<address class="text-cta text-sm not-italic space-y-2">
<p class="flex items-center justify-center sm:justify-start gap-2">
<flux:icon name="phone" class="w-4 h-4 text-cta flex-shrink-0" />
<a href="tel:+970599353502" class="hover:text-cta-light transition-colors ltr-inline" data-test="footer-phone">
+970 599 353 502
</a>
</p>
<p class="flex items-start justify-center sm:justify-start gap-2">
<flux:icon name="map-pin" class="w-4 h-4 text-cta flex-shrink-0 mt-0.5" />
<span data-test="footer-address">{{ __('footer.address') }}</span>
</p>
<p class="flex items-center justify-center sm:justify-start gap-2">
<flux:icon name="envelope" class="w-4 h-4 text-cta flex-shrink-0" />
<a href="mailto:{{ __('footer.email') }}" class="hover:text-cta-light transition-colors ltr-inline" data-test="footer-email">
{{ __('footer.email') }}
</a>
</p>
</address>
</div>