import type { Metadata } from "next"; import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); export const metadata: Metadata = { title: "Bean & Brew - Premium Artisanal Coffee", description: "Discover freshly roasted, ethically sourced coffee at Bean & Brew. Expert baristas craft every cup with passion. Visit our cozy café today.", keywords: "coffee shop, artisanal coffee, cappuccino, espresso, café, premium coffee", robots: { index: true, follow: true }, openGraph: { title: "Bean & Brew - Premium Artisanal Coffee", description: "Discover freshly roasted, ethically sourced coffee at Bean & Brew. Expert baristas craft every cup with passion.", siteName: "Bean & Brew", type: "website" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}