Nye-TeeOff/frontend/src/app/golfbaner/page.tsx

97 lines
2.9 KiB
TypeScript
Raw Normal View History

2026-04-12 10:11:23 +02:00
import FacilitySearch from "@/app/FacilitySearch";
import { API_URL } from "@/config/constants";
2026-04-12 22:07:51 +02:00
import {
createBreadcrumbJsonLd,
createCollectionPageJsonLd,
2026-04-18 09:00:16 +02:00
createItemListJsonLd,
2026-04-12 22:07:51 +02:00
createPageMetadata,
} from "@/app/seo";
2026-04-12 10:11:23 +02:00
export const dynamic = "force-dynamic";
2026-04-18 09:00:16 +02:00
const pageTitle = "Golfbaner i Norge";
2026-04-12 22:07:51 +02:00
const pageDescription =
2026-04-18 09:00:16 +02:00
"Finn golfbaner i Norge og filtrer på område, banestatus, antall hull og fasiliteter i TeeOffs samlede oversikt.";
2026-04-12 22:07:51 +02:00
export const metadata = createPageMetadata({
title: pageTitle,
description: pageDescription,
path: "/golfbaner",
});
2026-04-12 10:11:23 +02:00
export default async function GolfCoursesIndexPage() {
let facilities = [];
try {
const res = await fetch(`${API_URL}/facilities`, {
next: { revalidate: 0 },
cache: "no-store",
});
if (!res.ok) {
throw new Error(`API returnerte status ${res.status}`);
}
facilities = await res.json();
} catch (error) {
console.error("Kritisk feil ved henting av golfbaner:", error);
facilities = [];
}
const safeData = Array.isArray(facilities) ? facilities : [];
2026-04-12 22:07:51 +02:00
const collectionJsonLd = createCollectionPageJsonLd({
name: pageTitle,
description: pageDescription,
path: "/golfbaner",
});
2026-04-18 09:00:16 +02:00
const itemListJsonLd = createItemListJsonLd({
name: pageTitle,
path: "/golfbaner",
items: safeData
.filter((facility) => facility?.slug && facility?.name)
.map((facility) => ({
name: facility.name,
path: `/golfbaner/${facility.slug}`,
description: facility.description,
})),
});
2026-04-12 22:07:51 +02:00
const breadcrumbJsonLd = createBreadcrumbJsonLd([
{ name: "Hjem", path: "/" },
{ name: "Golfbaner", path: "/golfbaner" },
]);
2026-04-12 10:11:23 +02:00
return (
2026-04-12 22:07:51 +02:00
<>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(collectionJsonLd) }}
/>
2026-04-18 09:00:16 +02:00
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(itemListJsonLd) }}
/>
2026-04-12 22:07:51 +02:00
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(breadcrumbJsonLd) }}
2026-04-12 10:11:23 +02:00
/>
2026-04-12 22:07:51 +02:00
<main className="site-shell min-h-screen">
<section className="mx-auto max-w-[1400px] px-4 pt-6 sm:px-6 sm:pt-8 lg:px-8 lg:pt-10">
<div className="mb-2 max-w-4xl">
<p className="mb-3 text-[11px] font-extrabold uppercase tracking-[0.3em] text-[#6FA786]">Golfbaner</p>
<h1 className="section-title text-4xl text-[#112015] sm:text-5xl lg:text-6xl">Golfbaner i Norge</h1>
<p className="mt-4 max-w-3xl text-base leading-8 text-[#617063]">
Filtrer norske golfbaner etter område, banestatus, antall hull og fasiliteter, og videre til hver baneprofil.
</p>
</div>
</section>
2026-04-12 22:07:51 +02:00
<FacilitySearch
initialFacilities={safeData}
variant="home"
hideTitleBlock
filterHeading="Filtrer golfbaner"
2026-04-12 22:07:51 +02:00
/>
</main>
</>
2026-04-12 10:11:23 +02:00
);
}