Update src/app/layout.tsx

This commit is contained in:
2026-03-09 21:53:17 +00:00
parent 4e12e1995b
commit 7de431cccc

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}