36 lines
No EOL
1.5 KiB
PHP
36 lines
No EOL
1.5 KiB
PHP
<section class="section-dark section-padding">
|
|
<div class="container-narrow text-center">
|
|
<div class="spacing-section">
|
|
<h2 class="text-5xl lg:text-6xl font-light text-[hsl(var(--dark-text))] leading-tight">
|
|
Wachsen Sie <br />
|
|
<span class="text-secondary">mit uns</span>
|
|
</h2>
|
|
|
|
<div class="w-16 h-px bg-secondary mx-auto"></div>
|
|
|
|
<p class="text-large text-dark-muted leading-relaxed max-w-2xl mx-auto">
|
|
Werden Sie Teil des B2In-Partnernetzwerks und erschließen Sie neue
|
|
Geschäftsmöglichkeiten durch innovative Konnektivitätslösungen.
|
|
</p>
|
|
|
|
<div class="grid md:grid-cols-3 gap-8 py-8">
|
|
@foreach($this->stats as $stat)
|
|
<div class="text-center space-y-3">
|
|
<div class="text-4xl font-light text-secondary">{{ $stat['number'] }}</div>
|
|
<p class="text-dark-muted text-sm">{{ $stat['label'] }}</p>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
|
|
<div class="spacing-content">
|
|
<a href="/contact" class="btn-accent px-12 py-6 rounded-2xl text-lg">
|
|
Werden Sie B2In Partner
|
|
</a>
|
|
|
|
<p class="text-dark-muted text-sm">
|
|
Entdecken Sie die Vorteile einer strategischen Partnerschaft mit B2In
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section> |