import type { Metadata } from "next"; import { Open_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Coffee Haven - Premium Specialty Coffee Shop", description: "Discover freshly roasted, ethically sourced specialty coffee at Coffee Haven. Premium espresso drinks, single-origin beans, and a welcoming atmosphere.", keywords: "specialty coffee, espresso, cappuccino, coffee shop, roasted coffee, fair trade, barista", metadataBase: new URL("https://example.com"), alternates: { canonical: "https://example.com" }, openGraph: { title: "Coffee Haven - Premium Specialty Coffee Shop", description: "Discover freshly roasted, ethically sourced specialty coffee at Coffee Haven.", type: "website", siteName: "Coffee Haven", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140060621-29xib9f7.jpg", alt: "Premium coffee drink at Coffee Haven" } ] }, twitter: { card: "summary_large_image", title: "Coffee Haven - Premium Specialty Coffee", description: "Freshly roasted specialty coffee made with passion.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140060621-29xib9f7.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}