b2in/resources/views/livewire/web/components/sections/our-story.blade.php
2025-10-20 17:50:35 +02:00

33 lines
1.6 KiB
PHP

<section class="section-padding">
<div class="container-padding text-center">
<h2 class="text-section-title text-foreground mb-12">
{!! $content['title'] !!}
</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
@foreach($content['timeline'] as $index => $item)
<div class="group {{ $index === 4 ? 'md:col-span-2 lg:col-span-1 lg:col-start-2' : '' }}">
<div class="card-elevated p-8 rounded-3xl h-full hover:scale-105 transition-all duration-300 relative overflow-hidden">
<div class="text-center space-y-6">
<div class="w-12 h-12 mx-auto bg-secondary/20 rounded-full flex items-center justify-center">
<div class="w-6 h-6 bg-secondary rounded-full"></div>
</div>
<h3 class="text-xl font-semibold text-foreground">{{ $item['title'] }}</h3>
<p class="text-muted-foreground text-sm leading-relaxed">
{{ $item['description'] }}
</p>
</div>
<div class="absolute bottom-0 left-0 right-0 h-1 bg-gradient-to-r from-secondary/20 via-secondary to-secondary/20 transform scale-x-0 group-hover:scale-x-100 transition-transform duration-300"></div>
</div>
</div>
@endforeach
</div>
<p class="text-large text-muted-foreground leading-relaxed max-w-3xl mx-auto mt-12">
{{ $content['summary'] }}
</p>
</div>
</section>