From 1193d247db3a2ea557a19c876bfa2895fe02b1cd Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 18:50:35 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 38 ++++++++++++++++++++++++++++++-------- 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..89dc2fc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}