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

47 lines
2.1 KiB
PHP

<section class="section-padding">
<div class="container-padding">
<div class="grid lg:grid-cols-2 gap-16 items-center">
<div class="space-y-12">
<div class="grid grid-cols-2 gap-8">
@foreach($content['stats'] as $stat)
<div>
<div class="text-6xl font-light text-foreground mb-2">{{ $stat['number'] }}</div>
<p class="text-muted-foreground text-sm">{{ $stat['text'] }}</p>
</div>
@endforeach
</div>
<div class="space-y-6">
<h3 class="text-section-title">
{!! $content['title'] !!}
</h3>
<p class="text-muted-foreground leading-relaxed">
{{ $content['description'] }}
</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 pt-8">
@foreach($content['features'] as $feature)
<div class="flex items-center gap-3">
<div class="w-8 h-8 bg-secondary rounded-full flex items-center justify-center">
<span class="text-primary text-sm"></span>
</div>
<div>
<p class="text-foreground font-medium text-sm">{{ $feature['title'] }}</p>
<p class="text-muted-foreground text-xs">{{ $feature['subtitle'] }}</p>
</div>
</div>
@endforeach
</div>
</div>
</div>
<div class="relative">
<div class="card-elevated bg-muted p-0 overflow-hidden rounded-3xl">
<img src="{{ asset('img/assets/' . $content['image']) }}" alt="{{ $content['image_alt'] }}"
class="w-full h-96 object-cover" />
</div>
</div>
</div>
</div>
</section>