From 7de431cccce2a36314cb96354979fedc8df528a3 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 21:53:17 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dba4218..9c47d3c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Bannu Gul — Authentic Pakistani Cuisine in Abu Dhabi | 4.5★", description: "Award-winning Pakistani Bannu cuisine in Abu Dhabi. Authentic homestyle cooking, affordable prices, 551+ reviews. Dine-in, drive-through, delivery daily until midnight. Call 055 732 6165.", keywords: "Pakistani restaurant Abu Dhabi, Bannu cuisine, authentic Pakistani food, halal restaurant UAE, affordable Pakistani dining, South Asian food Abu Dhabi", metadataBase: new URL("https://bannugul-abudhabi.com"), - alternates: { - canonical: "https://bannugul-abudhabi.com"}, - openGraph: { - title: "Bannu Gul — Authentic Pakistani Cuisine in Abu Dhabi", description: "Award-winning Pakistani Bannu cuisine trusted by 551 reviewers. Dine-in, drive-through, delivery. Call 055 732 6165.", url: "https://bannugul-abudhabi.com", siteName: "Bannu Gul", images: [ - { - url: "http://img.b2bpic.net/free-vector/hand-drawn-indian-restaurant-facebook-template_23-2149444834.jpg", alt: "Authentic Bannu cuisine at Bannu Gul"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Bannu Gul — Authentic Pakistani Cuisine in Abu Dhabi", description: "Award-winning Pakistani Bannu cuisine. 4.5★ rated. Call 055 732 6165 to order.", images: ["http://img.b2bpic.net/free-vector/hand-drawn-indian-restaurant-facebook-template_23-2149444834.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Bannu Gul - Authentic Pakistani Cuisine in Abu Dhabi", description: "Discover authentic Bannu cuisine in Abu Dhabi. Award-winning Pakistani restaurant with 551+ reviews. Dine-in, drive-through, or delivery available daily until midnight."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}