30 lines
676 B
PHP
30 lines
676 B
PHP
@extends('web.layouts.web-master')
|
|
|
|
@section('title', 'B2in Magazin - Insights & Trends')
|
|
|
|
@section('content')
|
|
<div class="bg-background">
|
|
<livewire:web.components.ui.header />
|
|
|
|
<main class="variante-glass-flow">
|
|
<livewire:web.components.sections.portfolio />
|
|
<livewire:web.components.sections.c-t-a-section section="cta_section_portfolio" />
|
|
</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
|