39 lines
2 KiB
PHP
39 lines
2 KiB
PHP
<section class="section-padding flex items-center relative border-b border-border/30">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 bg-[hsl(var(--hero-container))] rounded-[20px] w-[95%]">
|
|
<div class="grid lg:grid-cols-2 gap-16 items-center">
|
|
<div class="space-y-8 slide-right delay-200">
|
|
<h1 class="text-hero">
|
|
{!! $content['title'] !!}
|
|
</h1>
|
|
|
|
<blockquote class="text-large text-muted-foreground italic leading-relaxed border-l-4 border-secondary pl-6">
|
|
{!! $content['quote'] !!}
|
|
</blockquote>
|
|
|
|
<div class="flex items-center gap-4">
|
|
<div class="w-16 h-px bg-secondary"></div>
|
|
<div>
|
|
<p class="font-semibold text-foreground">{{ $content['founder_name'] }}</p>
|
|
<p class="text-sm text-muted-foreground">{{ $content['founder_title'] }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="relative">
|
|
<div class="relative rounded-3xl overflow-hidden shadow-elevated slide-left delay-300">
|
|
<img src="{{ theme_image_url($content['image']) }}"
|
|
alt="{{ $content['image_alt'] }}"
|
|
class="w-full h-[600px] object-cover" />
|
|
<div class="absolute inset-0 bg-gradient-to-t from-black/20 to-transparent"></div>
|
|
</div>
|
|
|
|
{{-- Floating info card --}}
|
|
<div
|
|
class="absolute bottom-6 left-6 bg-card/95 backdrop-blur-sm rounded-xl p-4 shadow-lg border border-border/50 slide-left delay-400">
|
|
<div class="text-xl font-medium text-muted-foreground">{{ $content['card_title'] }}</div>
|
|
<div class="text-lg font-medium font-secondary">{!! $content['card_text'] !!}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|