complete story 16.1

This commit is contained in:
Naser Mansour
2026-01-11 20:35:51 +02:00
parent 04fa6b399c
commit 877569e6e8
9 changed files with 298 additions and 13 deletions
@@ -0,0 +1,43 @@
<?php
use Livewire\Attributes\Layout;
use Livewire\Volt\Component;
new #[Layout('components.layouts.public')] class extends Component
{
//
}; ?>
<div>
{{-- Hero Section --}}
<section class="bg-[#2D3624] py-10 sm:py-[60px] lg:py-20 -mx-4 sm:-mx-6 lg:-mx-8 -mt-6 sm:-mt-8">
<div class="container mx-auto px-4 text-center">
{{-- Page Title --}}
<h1 class="text-[2rem] sm:text-[2.5rem] lg:text-[3rem] font-bold text-white mb-4">
{{ __('about.title') }}
</h1>
{{-- Tagline --}}
<p class="text-xl sm:text-2xl text-white/80 max-w-[800px] mx-auto mb-6">
{{ __('about.tagline') }}
</p>
{{-- Identity Statement --}}
<p class="text-lg text-white/70 max-w-[700px] mx-auto">
{{ __('about.identity') }}
</p>
</div>
</section>
{{-- Vision Section - Story 16.2 --}}
{{-- Mission Section - Story 16.2 --}}
{{-- Values Section - Story 16.3 --}}
{{-- Goals Section - Story 16.4 --}}
{{-- Services Section - Story 16.5 --}}
{{-- Scholarship Section - Story 16.6 --}}
</div>