Update src/app/layout.tsx

This commit is contained in:
2026-03-12 02:55:45 +00:00
parent f0d21ae141
commit 75b7417a5e

View File

@@ -1,28 +1,63 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Inter } 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";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Garden Creamery | Organic Ice Cream San Francisco",
description: "Small-batch organic ice cream with unique Asian-inspired flavors in the Mission District. Vegan sorbets, local ingredients, event catering.",
keywords: "ice cream San Francisco, organic ice cream SF, Mission District ice cream, vegan sorbet, Asian ice cream flavors, matcha ice cream, ube pandan, ice cream catering SF",
metadataBase: new URL("https://gardencreamery.com"),
alternates: {
canonical: "https://gardencreamery.com",
},
openGraph: {
title: "Garden Creamery | Small-Batch Organic Ice Cream",
description: "Discover unique Asian-inspired flavors crafted daily with local ingredients in San Francisco's Mission District.",
url: "https://gardencreamery.com",
siteName: "Garden Creamery",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/pistachio-ice-cream_658428-311.jpg",
alt: "Garden Creamery organic ice cream",
},
],
},
twitter: {
card: "summary_large_image",
title: "Garden Creamery | Organic Ice Cream SF",
description: "Small-batch ice cream with Asian-inspired flavors. Vegan options, local ingredients, catering.",
images: [
"http://img.b2bpic.net/free-photo/pistachio-ice-cream_658428-311.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}