b2in/resources/views/livewire/web/components/sections_bak/ecosystem-stats.blade_bak.php
2025-10-20 17:50:35 +02:00

29 lines
1.2 KiB
PHP

<section class="py-20 px-4 bg-background">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl lg:text-5xl font-light text-foreground mb-6">
Unser <span class="text-primary">Ecosystem</span> in Zahlen
</h2>
<p class="text-xl text-muted-foreground max-w-3xl mx-auto">
Zahlen, die die Stärke und das Vertrauen in unser vernetztes
Geschäftsmodell widerspiegeln.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
@foreach ($this->stats as $stat)
<div class="card-elevated rounded-2xl p-8 text-center">
<div class="text-4xl lg:text-5xl font-bold text-primary mb-4">
{{ $stat['number'] }}
</div>
<h3 class="text-lg font-semibold text-foreground mb-3">
{{ $stat['label'] }}
</h3>
<p class="text-sm text-muted-foreground leading-relaxed">
{{ $stat['description'] }}
</p>
</div>
@endforeach
</div>
</div>
</section>