Update src/app/layout.tsx

This commit is contained in:
2026-03-13 06:03:33 +00:00
parent 35e754a7e6
commit 5a768baa11

View File

@@ -1,24 +1,56 @@
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: "Chijilife Shawarma - Premium Fresh Grilled Shawarma",
description: "Experience the most irresistible shawarma at Chijilife. Perfectly grilled meats, fresh vegetables, and signature sauces crafted with passion.",
keywords: "shawarma, premium shawarma, fresh grilled meat, authentic shawarma, street food, restaurant, order online",
openGraph: {
title: "Chijilife Shawarma - Premium Fresh Shawarma",
description: "Freshly grilled meats, crisp vegetables, and signature sauces wrapped into perfection.",
siteName: "Chijilife Shawarma",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=89nv62",
alt: "Chijilife Shawarma - Premium Grilled Shawarma",
},
],
},
twitter: {
card: "summary_large_image",
title: "Chijilife Shawarma - Every Bite, A Masterpiece",
description: "Premium fresh shawarma with perfectly grilled meats and signature sauces",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=89nv62"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +59,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 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}