diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ea19322..eec13f9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,19 @@ -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"], -}); +import type { Metadata } from 'next'; +import './globals.css'; export const metadata: Metadata = { - title: "Baghdad Restaurant | Authentic Middle Eastern Food in Saskatoon", description: "Experience authentic Middle Eastern cuisine at Baghdad Restaurant in Saskatoon. Fresh grilled kebabs, shawarma, and traditional Iraqi dishes. 4.8★ rated. Order online or dine in.", keywords: "Middle Eastern restaurant Saskatoon, kebabs, shawarma, Iraqi food, authentic cuisine, order online", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Baghdad Restaurant | Authentic Middle Eastern Food", description: "Fresh grilled kebabs and authentic Middle Eastern cuisine in Saskatoon. 4.8★ from 836 customers.", type: "website", siteName: "Baghdad Restaurant", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-salad-with-greens-meat-with-vegetables-board-with-bread_140725-11456.jpg", alt: "Fresh grilled kebabs and authentic Middle Eastern cuisine"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Baghdad Restaurant | Authentic Middle Eastern Food", description: "Authentic kebabs and shawarma in Saskatoon. 4.8★ rated.", images: ["http://img.b2bpic.net/free-photo/side-view-salad-with-greens-meat-with-vegetables-board-with-bread_140725-11456.jpg"], - }, + title: 'Baghdad Restaurant - Authentic Middle Eastern Cuisine in Saskatoon', + description: 'Experience authentic Middle Eastern flavors at Baghdad Restaurant in Saskatoon. Fresh grilled kebabs, shawarma, and traditional Iraqi cuisine with warm hospitality.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -