From 86a59b8c29f68aacc80d61b6d4c2457b5135dfef Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 07:31:12 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d902a8c..91369de 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; +import "./styles/variables.css"; 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Shree Pandit Ji Foods | Kanpur Street Food", description: "Famous street food in Kanpur. Authentic Bun Makhan, fresh buttermilk & Indo-Chinese specialties at Mall Road. Open 6 AM-1 PM, 5:30-9 PM daily.", keywords: "street food kanpur, bun makhan, buttermilk, Indo-Chinese food, food in kanpur, Mall Road", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Shree Pandit Ji Foods | Authentic Kanpur Street Food", description: "Experience authentic street food at Shree Pandit Ji Foods. Famous for Bun Makhan & fresh buttermilk. Located at Mall Road, Kanpur.", siteName: "Shree Pandit Ji Foods", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/hamburgers-white-plate_181624-8125.jpg", alt: "Famous Bun Makhan"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Shree Pandit Ji Foods | Kanpur Street Food", description: "Authentic street food. Bun Makhan, buttermilk & Indo-Chinese specialties.", images: ["http://img.b2bpic.net/free-photo/hamburgers-white-plate_181624-8125.jpg"], - }, -}; + title: "Shree Pandit Ji Foods - Authentic Street Food", description: "Experience authentic Kanpur street food at Shree Pandit Ji Foods. Famous for Bun Makhan, Buttermilk, and Indo-Chinese specialties."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +