diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..34fc3ac 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Saul Good Liquors - Guilford, CT | Wine, Whiskey & Craft Beer", + description: "Your local liquor store in Guilford, CT. Premium wine, whiskey, craft beer & spirits. Knowledgeable staff, special orders, and community-focused service.", + keywords: "liquor store Guilford CT, wine shop near me, whiskey store, craft beer, spirits shop Connecticut", + metadataBase: new URL("https://saulgoodliquors.com"), + alternates: { + canonical: "https://saulgoodliquors.com", + }, + openGraph: { + title: "Saul Good Liquors - Guilford, CT", + description: "Premium selections, expert recommendations, and genuine hospitality. Your go-to bottle shop.", + url: "https://saulgoodliquors.com", + siteName: "Saul Good Liquors", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/fashionable-woman-look-with-black-white-striped-suit-jacket-leather-pants-posing-street-against-large-windows-building-concept-fashion-girl_627829-11650.jpg", + alt: "Saul Good Liquors storefront", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Saul Good Liquors - Guilford, CT", + description: "Premium wine, whiskey, beer & spirits with knowledgeable local staff.", + images: [ + "http://img.b2bpic.net/free-photo/fashionable-woman-look-with-black-white-striped-suit-jacket-leather-pants-posing-street-against-large-windows-building-concept-fashion-girl_627829-11650.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}