complete story 10.2

This commit is contained in:
Naser Mansour
2026-01-03 03:29:51 +02:00
parent e758458df1
commit 44f291fbc3
19 changed files with 157 additions and 100 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<x-layouts.public>
<div class="py-8">
<h1 class="text-3xl font-bold text-navy mb-6">{{ __('navigation.booking') }}</h1>
<h1 class="text-3xl font-bold text-charcoal mb-6">{{ __('navigation.booking') }}</h1>
<div class="bg-white p-8 rounded-lg shadow-md">
<p class="text-charcoal">{{ __('Booking form will be implemented in a future story.') }}</p>
</div>
+4 -4
View File
@@ -1,19 +1,19 @@
<x-layouts.public>
<div class="text-center py-8 sm:py-12">
<h1 class="text-2xl sm:text-3xl lg:text-4xl font-bold text-navy mb-4">{{ __('Libra Law Firm') }}</h1>
<h1 class="text-2xl sm:text-3xl lg:text-4xl font-bold text-charcoal mb-4">{{ __('Libra Law Firm') }}</h1>
<p class="text-charcoal text-base sm:text-lg mb-6 sm:mb-8 px-4">{{ __('Professional legal services with integrity and excellence.') }}</p>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4 sm:gap-6 lg:gap-8 mt-8 sm:mt-12">
<div class="bg-white p-4 sm:p-6 rounded-lg shadow-md">
<h3 class="text-lg sm:text-xl font-semibold text-navy mb-2">{{ __('Expert Consultations') }}</h3>
<h3 class="text-lg sm:text-xl font-semibold text-charcoal mb-2">{{ __('Expert Consultations') }}</h3>
<p class="text-charcoal text-sm sm:text-base">{{ __('Professional legal advice tailored to your needs.') }}</p>
</div>
<div class="bg-white p-4 sm:p-6 rounded-lg shadow-md">
<h3 class="text-lg sm:text-xl font-semibold text-navy mb-2">{{ __('Case Management') }}</h3>
<h3 class="text-lg sm:text-xl font-semibold text-charcoal mb-2">{{ __('Case Management') }}</h3>
<p class="text-charcoal text-sm sm:text-base">{{ __('Track your cases and stay informed every step of the way.') }}</p>
</div>
<div class="bg-white p-4 sm:p-6 rounded-lg shadow-md sm:col-span-2 lg:col-span-1">
<h3 class="text-lg sm:text-xl font-semibold text-navy mb-2">{{ __('Legal Resources') }}</h3>
<h3 class="text-lg sm:text-xl font-semibold text-charcoal mb-2">{{ __('Legal Resources') }}</h3>
<p class="text-charcoal text-sm sm:text-base">{{ __('Access our library of legal insights and articles.') }}</p>
</div>
</div>
+1 -1
View File
@@ -1,6 +1,6 @@
<x-layouts.public>
<div class="py-8">
<h1 class="mb-6 text-3xl font-bold text-navy dark:text-gold">{{ $page->getTitle() }}</h1>
<h1 class="mb-6 text-3xl font-bold text-charcoal dark:text-off-white">{{ $page->getTitle() }}</h1>
<div class="prose max-w-none rounded-lg bg-white p-8 shadow-md dark:bg-zinc-800 dark:prose-invert" dir="{{ app()->getLocale() === 'ar' ? 'rtl' : 'ltr' }}">
@if ($page->getContent())
{!! clean($page->getContent()) !!}
+1 -1
View File
@@ -1,6 +1,6 @@
<x-layouts.public>
<div class="py-8">
<h1 class="text-3xl font-bold text-navy mb-6">{{ __('footer.privacy') }}</h1>
<h1 class="text-3xl font-bold text-charcoal mb-6">{{ __('footer.privacy') }}</h1>
<div class="bg-white p-8 rounded-lg shadow-md prose max-w-none">
<p class="text-charcoal">{{ __('Privacy policy content will be added here.') }}</p>
</div>
+1 -1
View File
@@ -1,6 +1,6 @@
<x-layouts.public>
<div class="py-8">
<h1 class="text-3xl font-bold text-navy mb-6">{{ __('footer.terms') }}</h1>
<h1 class="text-3xl font-bold text-charcoal mb-6">{{ __('footer.terms') }}</h1>
<div class="bg-white p-8 rounded-lg shadow-md prose max-w-none">
<p class="text-charcoal">{{ __('Terms of service content will be added here.') }}</p>
</div>