complete story 14.4
This commit is contained in:
@@ -86,4 +86,31 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{{-- Values Section --}}
|
||||
<section id="values" class="py-16 lg:py-20 bg-card">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="text-center mb-12">
|
||||
<h2 class="text-2xl lg:text-3xl font-semibold text-text mb-4">
|
||||
{{ __('home.values_title') }}
|
||||
</h2>
|
||||
<p class="text-body max-w-2xl mx-auto">
|
||||
{{ __('home.values_subtitle') }}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-6 gap-6">
|
||||
@foreach(['integrity', 'justice', 'knowledge', 'empowerment', 'professionalism', 'innovation'] as $value)
|
||||
<div class="text-center group">
|
||||
<div class="w-16 h-16 lg:w-20 lg:h-20 rounded-full bg-cta/10 flex items-center justify-center mx-auto mb-3 transition-colors group-hover:bg-cta/20">
|
||||
<flux:icon name="{{ __('home.values.' . $value . '.icon') }}" class="w-8 h-8 lg:w-10 lg:h-10 text-cta" />
|
||||
</div>
|
||||
<h3 class="text-sm lg:text-base font-bold text-text">
|
||||
{{ __('home.values.' . $value . '.title') }}
|
||||
</h3>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</x-layouts.public>
|
||||
|
||||
Reference in New Issue
Block a user