From c7b1c0667b782a8a91378e45bdb5dad5e0caae65 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 06:39:26 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 68 +++++----------------------------------------- 1 file changed, 7 insertions(+), 61 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1419ce7..b3ea4a9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,73 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Al-Zhaiqa - Authentic Pakistani Restaurant in Karachi | Biryani & Karahi", - description: "Experience authentic Pakistani cuisine at Al-Zhaiqa. Order biryani, karahi, tikka & more online or book a table. Serving Karachi with traditional Desi food since 2009.", - keywords: "Pakistani restaurant Karachi, biryani, karahi, tikka, Pakistani food delivery, order online, desi cuisine", - metadataBase: new URL("https://alzhaiqa.com"), - alternates: { - canonical: "https://alzhaiqa.com", - }, - openGraph: { - title: "Al-Zhaiqa - Authentic Pakistani Taste", - description: "Traditional Pakistani cuisine prepared with authentic recipes and spices", - siteName: "Al-Zhaiqa", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/pilaf-bowl-board-spices-yellow-green-background-top-view_185193-162334.jpg", - alt: "Al-Zhaiqa Authentic Pakistani Biryani", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Al-Zhaiqa - Authentic Pakistani Restaurant", - description: "Best biryani & karahi in Karachi. Order online or book your table now!", - images: ["http://img.b2bpic.net/free-photo/pilaf-bowl-board-spices-yellow-green-background-top-view_185193-162334.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Al-Zhaiqa - Authentic Pakistani Cuisine", description: "Experience the finest flavors of traditional Pakistani cuisine at Al-Zhaiqa. Authentic recipes, authentic taste."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}