Update src/app/layout.tsx

This commit is contained in:
2026-03-12 18:50:35 +00:00
parent acf4298cdb
commit 1193d247db

View File

@@ -1,24 +1,44 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 { Archivo } 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 archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "KFC - Finger Lickin' Good Fried Chicken & Delivery",
description: "Order KFC's famous fried chicken online for fast delivery. 75+ years of delicious signature recipes. Find locations, view menu, and enjoy exclusive offers.",
keywords: "fried chicken, KFC, order online, chicken delivery, chicken buckets, chicken burgers",
openGraph: {
title: "KFC - Finger Lickin' Good Fried Chicken",
description: "Discover the legendary taste of KFC. Order our signature fried chicken, buckets, and combos online for delivery or pickup.",
siteName: "KFC",
type: "website",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +47,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +61,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}