import type { Metadata } from "next"; import { Fraunces } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const fraunces = Fraunces({ variable: "--font-fraunces", subsets: ["latin"], }); export const metadata: Metadata = { title: "Brew Haven - Specialty Coffee Roasted Fresh Daily", description: "Discover our specialty coffee roasted fresh daily. Experience handcrafted drinks and artisan pastries in our warm, welcoming coffeehouse.", keywords: "specialty coffee, craft coffee, café, espresso, single origin, coffee shop, artisan, barista", metadataBase: new URL("https://brewhaven.com"), alternates: { canonical: "https://brewhaven.com" }, openGraph: { title: "Brew Haven - Specialty Coffee", description: "Discover our specialty coffee roasted fresh daily and handcrafted drinks.", type: "website", siteName: "Brew Haven", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140053900-frhkawzl.jpg", alt: "Specialty coffee cup" }] }, twitter: { card: "summary_large_image", title: "Brew Haven - Specialty Coffee", description: "Discover our specialty coffee roasted fresh daily.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140053900-frhkawzl.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}