@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('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 @case('bg_cta') @include('partials.bg_cta', ['section' => $section]) @break @case('n3_cards') @include('partials.n3_cards', ['section' => $section]) @break @case('n2_cards') @include('partials.n2_cards', ['section' => $section]) @break @case('featured_asset') @include('partials.featured_asset', ['section' => $section]) @break @case('featured_video') @include('partials.featured_asset_video', ['section' => $section]) @break @default @endswitch @endforeach @include('partials.footer')
@endsection @prepend('scripts') @endprepend