81 lines
2.5 KiB
TypeScript
81 lines
2.5 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import { Montserrat } 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 montserrat = Montserrat({
|
|
variable: "--font-montserrat",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Jessup Farm Barrel House — Craft Brewery Fort Collins",
|
|
description: "Barrel-aged craft brewery in a historic Fort Collins barn. Explore slow-aged beers, elevated food, and unforgettable patios.",
|
|
keywords: "Fort Collins brewery, barrel aged beer Colorado, craft brewery, best patios Fort Collins, Jessup Farm",
|
|
metadataBase: new URL("https://jessupfarmbarrelhouse.com"),
|
|
alternates: {
|
|
canonical: "https://jessupfarmbarrelhouse.com",
|
|
},
|
|
openGraph: {
|
|
title: "Jessup Farm Barrel House — Where Great Beer Takes Its Time",
|
|
description: "Barrel-aged craft brewery nestled in a historic barn in Fort Collins, Colorado. Slow-aged beers, elevated food, unforgettable patios.",
|
|
url: "https://jessupfarmbarrelhouse.com",
|
|
siteName: "Jessup Farm Barrel House",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "http://img.b2bpic.net/free-photo/tall-candles-shine-steel-dish_1304-4957.jpg",
|
|
alt: "old barn glowing at dusk firelight",
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Jessup Farm Barrel House — Craft Brewery",
|
|
description: "Barrel-aged craft beer in a historic Fort Collins barn.",
|
|
images: ["http://img.b2bpic.net/free-photo/tall-candles-shine-steel-dish_1304-4957.jpg"],
|
|
},
|
|
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} ${montserrat.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |