diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9285eb4..6719a72 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,34 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", 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, - }, -}; + title: "Casa Street - Authentic Moroccan Street Food in London", description: "Experience authentic Moroccan cuisine at Casa Street, located on Edgware Road, London. Fresh daily specials, traditional recipes, and warm hospitality."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + - {children} - + + {children}