Update src/app/layout.tsx

This commit is contained in:
2026-03-21 04:17:04 +00:00
parent b57905550b
commit 0515d1852f

View File

@@ -1,24 +1,58 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Brunch Collective - Best Brunch & Coffee in Spring Hill, TN",
description: "Brunch Collective is Spring Hill's favorite cozy brunch spot. Locally sourced ingredients, warm hospitality, and Instagram-worthy food. Order online or visit us today.",
keywords: "brunch Spring Hill TN, best breakfast Spring Hill, cozy coffee shop Tennessee, locally sourced brunch, artisan coffee Spring Hill",
openGraph: {
title: "Brunch Collective - Spring Hill's Favorite Brunch Spot",
description: "Experience cozy brunch with locally sourced ingredients. Artisan coffee, sourdough toast, breakfast burritos, and more in Spring Hill, Tennessee.",
siteName: "Brunch Collective",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg",
alt: "Cozy brunch table with coffee and sourdough at Brunch Collective",
},
],
},
twitter: {
card: "summary_large_image",
title: "Brunch Collective - Spring Hill's Favorite Brunch Spot",
description: "Locally sourced brunch, artisan coffee, and warm hospitality in Spring Hill, TN",
images: [
"http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +61,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +75,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}