@extends($layout) @section('content')
@include('partials.header')
@include('partials.float_menu') @include('partials.hero')
@foreach($sections as $key => $section) @switch($section->system->type) @case('n3_columns') @include('partials.n3_columns', ['section' => $section]) @break @case('n2_columns') @include('partials.n2_columns', ['section' => $section]) @break @case('n1_columns') @include('partials.n1_columns', ['section' => $section]) @break @case('simple_intro') @include('partials.simple_intro', ['section' => $section]) @break @case('sales_contact_section') @include('partials.sales_contact', ['section' => $section]) @break @case('html_block') @include('partials.html_block', ['section' => $section]) @break @default @endswitch
@endforeach
@include('partials.footer')
@endsection @prepend('scripts') @endprepend