diff --git a/app/components/cta.php b/app/components/cta.php index 0cfe7d3..0776456 100644 --- a/app/components/cta.php +++ b/app/components/cta.php @@ -12,4 +12,4 @@ $class = 'btn' . ($style === 'outline' ? ' btn--outline' : '') . ($size === 'lg' ? ' btn--lg' : ($size === 'sm' ? ' btn--sm' : '')); ?> - + diff --git a/app/components/jsonld.php b/app/components/jsonld.php index 278b027..92503bc 100644 --- a/app/components/jsonld.php +++ b/app/components/jsonld.php @@ -32,6 +32,11 @@ $clubNode = [ 'addressCountry' => $club['address']['country'], ], 'sameAs' => array_values(array_filter($club['social'])), + 'geo' => [ + '@type' => 'GeoCoordinates', + 'latitude' => $club['geo']['lat'], + 'longitude' => $club['geo']['lng'], + ], ]; $graph = [ diff --git a/app/components/nav.php b/app/components/nav.php index e4d5e4e..83c03d2 100644 --- a/app/components/nav.php +++ b/app/components/nav.php @@ -38,7 +38,7 @@ $href = static function (string $slug): string {