import type { Metadata } from "next"; import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Abby's Sew Right | Expert Bridal & Formal Wear Alterations", description: "Expert bridal gown alterations, prom dresses, and formal wear tailoring. Trusted by brides for exceptional craftsmanship, personal service, and impossible-to-fix solutions.", keywords: "bridal alterations, wedding dress alterations, prom dress alterations, formal wear tailoring, gown fitting, seamstress, bridal shop", robots: { index: true, follow: true, }, openGraph: { title: "Abby's Sew Right | Exceptional Bridal Alterations", description: "Where every dress finds its perfect fit. Expert alterations for brides, prom, and formal events.", type: "website", siteName: "Abby's Sew Right"}, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}