Files
adde33e0-31c2-4201-9e42-31b…/src/app/layout.tsx
2026-03-16 19:19:13 +00:00

71 lines
2.1 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: "The Hook Orlando - Legendary Smash Burgers & Loaded Fries",
description: "Orlando's most addrageously good burgers. Fresh smash burgers, house-made sauces, and loaded fries from a gourmet food truck. Find us tonight.",
keywords: "smash burgers Orlando, food truck Orlando, best burgers near me, loaded fries, gourmet burgers",
openGraph: {
title: "The Hook Orlando - Legendary Smash Burgers",
description: "Luxury street food. Fresh smash burgers and loaded fries from Orlando's favorite food truck.",
siteName: "The Hook Orlando",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g85isk",
alt: "The Hook smash burger",
},
],
},
twitter: {
card: "summary_large_image",
title: "The Hook Orlando - Legendary Smash Burgers",
description: "Fresh smash burgers and loaded fries. Street food done like fine dining.",
},
};
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>
);
}