diff --git a/app/src/app/faq/page.tsx b/app/src/app/faq/page.tsx new file mode 100644 index 0000000..789e27f --- /dev/null +++ b/app/src/app/faq/page.tsx @@ -0,0 +1,41 @@ +import type { Metadata } from "next"; +import { FAQ_ITEMS, buildFaqJsonLd } from "@/lib/faq"; + +export const revalidate = false; + +export const metadata: Metadata = { + title: "FAQ", + description: + "Frequently asked questions about TriTimes — where the race data comes from, whether it's affiliated with IRONMAN, and how to report issues.", + alternates: { canonical: "/faq" }, + openGraph: { + title: "FAQ", + description: + "Frequently asked questions about TriTimes — where the race data comes from and how it works.", + url: "/faq", + }, +}; + +export default function FaqPage() { + return ( +
+