24 lines
1.1 KiB
PHP
24 lines
1.1 KiB
PHP
<section class="py-8 bg-background border-b border-border/30">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="flex flex-col sm:flex-row items-center gap-6 sm:gap-8">
|
|
@if(isset($content['image']))
|
|
<div class="shrink-0">
|
|
<x-web-picture
|
|
src="{{ theme_image_url($content['image']) }}"
|
|
alt="{{ $content['name'] ?? 'Founder' }}"
|
|
class="w-16 h-16 sm:w-20 sm:h-20 rounded-full object-cover border-2 border-secondary/30 shadow-lg"
|
|
width="80" height="80" />
|
|
</div>
|
|
@endif
|
|
|
|
<div class="text-center sm:text-left">
|
|
<p class="text-lg sm:text-xl font-medium text-foreground">
|
|
{!! $content['statement'] ?? '' !!}
|
|
</p>
|
|
<p class="text-sm text-muted-foreground mt-1">
|
|
{{ $content['name'] ?? '' }} · {{ $content['title'] ?? '' }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|