import type { Metadata } from "next"; import { Spectral } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const spectral = Spectral({ variable: "--font-spectral", subsets: ["latin"], weight: ["200", "300", "400", "500", "600", "700", "800"], }); export const metadata: Metadata = { title: "BrewHaven - Premium Coffee Experience", description: "Discover ethically sourced, expertly crafted coffee at BrewHaven. Premium specialty beverages in a welcoming atmosphere. Visit us today.", keywords: ["coffee shop", "specialty coffee", "espresso", "cappuccino", "cold brew", "coffee near me"], openGraph: { title: "BrewHaven - Premium Coffee Experience", description: "Ethically sourced, expertly crafted coffee for every moment of your day.", type: "website", siteName: "BrewHaven", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140059770-hkqb0x9d.jpg", alt: "BrewHaven Premium Coffee" }] }, twitter: { card: "summary_large_image", title: "BrewHaven - Premium Coffee Experience", description: "Ethically sourced, expertly crafted coffee for every moment of your day.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140059770-hkqb0x9d.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}