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: "Aldo Cafe - Coffee, Food & Workspace in Salt Lake, Kolkata", description: "Cozy cafe in Salt Lake offering specialty coffee, global comfort food, and dedicated workspace. Perfect for coffee lovers, food enthusiasts, and remote workers.", keywords: "cafe kolkata, coffee shop salt lake, workspace kolkata, brunch kolkata, coworking space", metadataBase: new URL("https://aldocafe.com"), alternates: { canonical: "https://aldocafe.com" }, openGraph: { title: "Aldo Cafe - Your Cozy Escape in Salt Lake", description: "Discover specialty coffee, global cuisine, and comfortable workspace at Aldo Cafe in Kolkata", siteName: "Aldo Cafe", type: "website", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767008355646-ym3tyedb.jpg", alt: "Aldo Cafe Cozy Interior" }] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}