74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import { Archivo } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const archivo = Archivo({
|
|
variable: "--font-archivo",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Dragon's Den | Premium 24/7 Personal Training & Recovery Gym",
|
|
description: "Elite personal training, sauna, and cold plunge recovery in Rohnert Park, Sonoma County. 24/7 member access. Where discipline meets transformation.",
|
|
keywords: "personal training Sonoma County, 24/7 gym Rohnert Park, sauna cold plunge, private gym, fitness coaching, strength training",
|
|
metadataBase: new URL("https://dragonsden.gym"),
|
|
alternates: {
|
|
canonical: "https://dragonsden.gym",
|
|
},
|
|
openGraph: {
|
|
title: "Dragon's Den | Where Strength Meets Transformation",
|
|
description: "Elite personal training and recovery experience. 24/7 access. Sauna. Cold plunge. Real community.",
|
|
url: "https://dragonsden.gym",
|
|
siteName: "Dragon's Den",
|
|
type: "website",
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Dragon's Den | Personal Training & Recovery Gym",
|
|
description: "Elite training. Deep recovery. Real transformation. 24/7 access in Rohnert Park.",
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |