diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..c2b9ca1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Guatelinda Bakery | Fresh Bread & Pastries in Sioux Falls", + description: "Award-winning family-owned bakery in Sioux Falls. Fresh artisan bread, pastries, and grilled sandwiches made daily with authentic recipes and quality ingredients.", + keywords: "bakery Sioux Falls, fresh bread, pastries, grilled sandwiches, family-owned bakery, local bakery", + metadataBase: new URL("https://guatelindabakery.com"), + alternates: { + canonical: "https://guatelindabakery.com", + }, + openGraph: { + title: "Guatelinda Bakery | Fresh Bread & Pastries", + description: "Discover authentic fresh-baked bread, pastries, and grilled sandwiches from our family-owned bakery in Sioux Falls.", + siteName: "Guatelinda Bakery", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/top-view-cut-sliced-sandwich-bread-bread-slice-with-butter-it-knife-cutting-board-wooden-background_141793-5910.jpg", + alt: "Fresh artisan bread from Guatelinda Bakery", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Guatelinda Bakery | Fresh Bread & Pastries", + description: "Authentic family-owned bakery in Sioux Falls with fresh-baked bread, pastries, and sandwiches.", + images: ["http://img.b2bpic.net/free-photo/top-view-cut-sliced-sandwich-bread-bread-slice-with-butter-it-knife-cutting-board-wooden-background_141793-5910.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}