import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); export const metadata: Metadata = { title: "Casa Street | Authentic Moroccan Street Food in London", description: "Discover authentic Moroccan street food at Casa Street in London. Fresh msemen, traditional tajines, and bold harissa. Order online or visit us at Edgware Rd.", keywords: "Moroccan restaurant London, Moroccan food, authentic tajine, msemen, Edgware Road, street food London", metadataBase: new URL("https://casastreet.com"), alternates: { canonical: "https://casastreet.com"}, openGraph: { title: "Casa Street | Authentic Moroccan Cuisine", description: "Experience authentic Moroccan street food elevated. Fresh ingredients, traditional recipes, warm hospitality.", url: "https://casastreet.com", siteName: "Casa Street", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/portrait-indian-man-bazaar_23-2150913302.jpg", alt: "Casa Street - Moroccan street food restaurant"}, ], }, twitter: { card: "summary_large_image", title: "Casa Street | Authentic Moroccan Food in London", description: "Try authentic Moroccan cuisine at Casa Street. Fresh food daily, traditional recipes, perfect location.", images: ["http://img.b2bpic.net/free-photo/portrait-indian-man-bazaar_23-2150913302.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}