@props([
'title' => null,
'metaDescription' => null,
'noindex' => false,
])
{{ $title ? $title . ' — ' : '' }}Institut Corps à Coeur
@if($metaDescription)
@endif
@if($noindex)
@endif
@vite(['resources/css/app.css', 'resources/js/app.js'])
{{-- Google Analytics + Google Ads (gtag.js) --}}
@php
$gaId = \App\Models\Setting::get('google_analytics_id');
$adsId = \App\Models\Setting::get('google_ads_id');
@endphp
@if ($gaId || $adsId)
@endif
@include('partials.sticky-banner')
@include('partials.header')
{{ $slot }}
@include('partials.social-bar')
@include('partials.footer')
@include('partials.flash')