@extends('web.layouts.web-master') @section('title', 'Einrichtungsnetzwerk - B2in Interior') @section('content')
{{-- Local-for-Local Konzept --}} {{-- Zwei Marken --}} @php $brands = cms_theme_section('interior_brands'); $zielgruppen = cms_theme_section('interior_zielgruppen'); $process = cms_theme_section('interior_process'); @endphp @if (!empty($brands))

{!! $brands['title'] ?? '' !!}

@if (isset($brands['subtitle']))

{{ $brands['subtitle'] }}

@endif
@foreach ($brands['brands'] ?? [] as $brand)
@if (isset($brand['logo']))
{{ $brand['name'] }}
@endif

{{ $brand['tagline'] ?? '' }}

{{ $brand['description'] ?? '' }}

@if (isset($brand['audience']))

{{ $brand['audience'] }}

@endif @if (isset($brand['link'])) @endif
@endforeach
@endif {{-- Für wen? Zielgruppen --}} @if (!empty($zielgruppen))

{!! $zielgruppen['title'] ?? '' !!}

@foreach ($zielgruppen['groups'] ?? [] as $group)
@switch($group['icon'] ?? '') @case('home') @break @case('building-office-2') @break @case('clipboard-document-check') @break @endswitch

{{ $group['title'] ?? '' }}

{{ $group['description'] ?? '' }}

@endforeach
@endif {{-- So funktioniert es - Prozess --}} @if (!empty($process))

{!! $process['title'] ?? '' !!}

@foreach ($process['steps'] ?? [] as $step)
{{ $step['number'] ?? '' }}

{{ $step['title'] ?? '' }}

{{ $step['description'] ?? '' }}

@endforeach
@endif {{-- Trust / Marcel Scheibe --}} {{-- CTA --}}
@endsection @push('styles') @endpush @push('scripts') {{-- Alpine.js wird zentral im Layout geladen --}} @endpush