@php
$footerBlocks = \App\Models\Block::where('type', 'footer_block')->get();
$footerBlock = $footerBlocks->first();
$year = date('Y');
@endphp
{{ $footerBlock->inclusion_message ?? 'At Viking Ancestry, we are committed to fostering a community that celebrates diversity, promotes equity, and ensures inclusion for all individuals. Our mission is to provide a platform where everybody can explore their ancestry and heritage with respect, dignity, and a sense of belonging.' }}
{{ $footerBlock->land_acknowledgment ?? 'We acknowledge that Viking Roots© operates on the traditional territories of the indigenous peoples of our region.' }}
@if($footerBlock && $footerBlock->copyright_text)
{{ $footerBlock->copyright_text }}
@else
Copyright {{ $year }} Viking Roots©
@endif