From 1f9db94b5fba726829d6c7ce8963e636a4ff215d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:56:01 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1427 +------------------------------------------- 1 file changed, 24 insertions(+), 1403 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5bc8851..f1fc9e7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/themeProvider/ServiceWrapper"; +import { Tag } from "@/components/common/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Panda Burger | Premium Fast Food", description: "Premium burgers crafted with fresh ingredients and bold flavors. Fast delivery, consistent quality. Experience why everyone says Klass.", keywords: "premium burgers, fast food, gourmet burgers, delivery, fresh ingredients", openGraph: { - title: "Panda Burger | Premium Fast Food", description: "Premium burgers crafted with fresh ingredients and bold flavors.", type: "website", siteName: "Panda Burger", images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-beef-burger-with-salad_23-2148784488.jpg", alt: "Premium Panda Burger"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Panda Burger | Premium Fast Food", description: "Premium burgers crafted with fresh ingredients and bold flavors.", images: ["http://img.b2bpic.net/free-photo/high-angle-beef-burger-with-salad_23-2148784488.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Panda Burger - Panda Burger Menu", description: "Panda Burger - Premium Fast Food Menu"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + + {children} - -