Update src/app/layout.tsx

This commit is contained in:
2026-03-10 16:08:01 +00:00
parent f9eb48fe3c
commit 7f3ddf5dd9

View File

@@ -1,24 +1,58 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Figtree } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Big Daddy's Delight - Delicious Food & Great Taste",
description: "Experience authentic fast food, biryani, and refreshing drinks at Big Daddy's Delight. Order online or reserve your table today. Open 11 AM - 11 PM daily.",
keywords: "restaurant, fast food, biryani, burgers, Mumbai, dining, food delivery",
openGraph: {
title: "Big Daddy's Delight - Delicious Food, Great Taste",
description: "Popular food spot with tasty fast food, refreshing drinks, and comfortable dining. Fresh, high-quality food with great flavors.",
siteName: "Big Daddy's Delight",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/front-view-meat-hamburger-with-fresh-tomatoes-dark-background_179666-19388.jpg",
alt: "Big Daddy's Delight Restaurant",
},
],
},
twitter: {
card: "summary_large_image",
title: "Big Daddy's Delight - Delicious Food, Great Taste",
description: "Experience authentic fast food and traditional Indian cuisine at Big Daddy's Delight",
images: [
"http://img.b2bpic.net/free-photo/front-view-meat-hamburger-with-fresh-tomatoes-dark-background_179666-19388.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +61,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +75,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}