diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..0c7521f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}