33 lines
953 B
PHP
33 lines
953 B
PHP
@extends('web.layouts.web-master')
|
|
|
|
@section('title', 'B2In Ecosystem - Intelligentes Netzwerk')
|
|
|
|
@section('content')
|
|
<div class="bg-background">
|
|
<livewire:web.components.ui.header />
|
|
|
|
<main>
|
|
<livewire:web.components.sections.ecosystem-hero />
|
|
<livewire:web.components.sections.ecosystem-stats />
|
|
<livewire:web.components.sections.end-customer-section />
|
|
<livewire:web.components.sections.broker-section />
|
|
<livewire:web.components.sections.supplier-section />
|
|
<livewire:web.components.sections.digital-core />
|
|
<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
|