diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8867adf..f546013 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1409 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Pankaj Fast Food - Best Chinese & Fast Food in Kapurthala", description: "Enjoy delicious fast food, Chinese dishes, and snacks at Pankaj Fast Food in Sadar Bazar, Kapurthala. 4.1★ rated. Order now on WhatsApp. Open 10AM-10PM daily.", keywords: "fast food Kapurthala, Chinese food, snacks, noodles, burgers, affordable food, Sadar Bazar", openGraph: { - title: "Pankaj Fast Food - Kapurthala", description: "Best loved fast food destination in Sadar Bazar with tasty Chinese dishes, snacks, and quick service.", siteName: "Pankaj Fast Food", type: "website"}, -}; + title: "Pankaj Fast Food - Kapurthala", description: "Delicious Chinese dishes, snacks, and beverages in Kapurthala"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -