32 lines
816 B
PHP
32 lines
816 B
PHP
@extends('web.layouts.web-master')
|
|
|
|
@section('title', 'Partner werden - B2In Ecosystem')
|
|
|
|
@section('content')
|
|
<div class="bg-background">
|
|
<livewire:web.components.ui.header />
|
|
|
|
<main>
|
|
<livewire:web.components.sections.partner-hero />
|
|
<livewire:web.components.sections.partner-benefits />
|
|
<livewire:web.components.sections.partner-process />
|
|
<livewire:web.components.sections.commitment-section />
|
|
<livewire:web.components.sections.partner-c-t-a />
|
|
|
|
</main>
|
|
|
|
<livewire:web.components.ui.footer />
|
|
</div>
|
|
@endsection
|
|
|
|
@push('styles')
|
|
<style>
|
|
[x-cloak] {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
@endpush
|
|
|
|
@push('scripts')
|
|
{{-- Alpine.js wird zentral im Layout geladen --}}
|
|
@endpush
|