import type { Metadata } from "next"; import { Nunito_Sans } from "next/font/google"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "The Bridge Coffee - 24/7 Café in Ez Zahra, Tunisia", description: "Open 24/7 café in Ez Zahra with free WiFi, great coffee, and affordable prices. 4.7★ rated. Call 55 330 056 or visit Av. de la République.", keywords: "café Ez Zahra, coffee shop Tunisia, 24/7 café, WiFi café, best coffee Ez Zahra", robots: { index: true, follow: true, }, metadataBase: new URL("https://www.bridgecoffee.tn"), alternates: { canonical: "https://www.bridgecoffee.tn"}, openGraph: { title: "The Bridge Coffee - Your 24/7 Coffee Spot", description: "Great coffee, fast WiFi, welcoming atmosphere. Open 24/7 in Ez Zahra.", url: "https://www.bridgecoffee.tn", siteName: "The Bridge Coffee", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/woman-works-cafe-evening_1153-3549.jpg", alt: "The Bridge Coffee café interior"}, ], }, twitter: { card: "summary_large_image", title: "The Bridge Coffee - 24/7 Café Ez Zahra", description: "Open 24/7 with free WiFi and great coffee. Call 55 330 056.", images: ["http://img.b2bpic.net/free-photo/woman-works-cafe-evening_1153-3549.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}