From 9073961dd77cbcf8962a0e872ce68d0e43b6a6a2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 00:48:40 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1420 +------------------------------------------- 1 file changed, 8 insertions(+), 1412 deletions(-) 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} - -