import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["100", "300", "400", "700", "900"], }); export const metadata: Metadata = { title: "Zërgë Coffeeshop – Specialty Coffee & Artisan Bagels in Budapest", description: "Discover Zërgë: intimate specialty coffee shop with fresh-baked bagels, La Marzocco machines, and edgy Budapest vibes. Dog-friendly, curated experience.", keywords: "coffee, bagels, budapest, specialty coffee, cafe, artisan, cozy, intimate", metadataBase: new URL("https://zergecoffee.hu"), alternates: { canonical: "https://zergecoffee.hu"}, openGraph: { title: "Zërgë – Exclusive Coffeeshop Experience", description: "Where morning begins: freshly-roasted specialty coffee meets artisan bagels in Budapest's most intimate cafe.", url: "https://zergecoffee.hu", siteName: "Zërgë Coffeeshop", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/flat-lay-donuts-wooden-surface_23-2148526378.jpg", alt: "Zërgë hero imagery"}, ], }, twitter: { card: "summary_large_image", title: "Zërgë – Exclusive Coffee & Bagels", description: "Intimate specialty coffeeshop in Budapest with fresh bagels and expert espresso.", images: ["http://img.b2bpic.net/free-photo/flat-lay-donuts-wooden-surface_23-2148526378.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}