diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6b21680..b3c47cf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Kebabchi - Authentic Kebabs in Lucknow", description: "Experience authentic hand-grilled kebabs at Kebabchi in Husainabad, Lucknow. Premium ingredients, traditional cooking methods, and exceptional dining.", keywords: "kebab restaurant lucknow, shish kebab, doner kebab, authentic kebabs, husainabad lucknow", openGraph: { - title: "Kebabchi - Premium Kebabs in Lucknow", description: "Discover the finest hand-grilled kebabs prepared with premium spices and traditional techniques", siteName: "Kebabchi", type: "website"}, - twitter: { - card: "summary_large_image", title: "Kebabchi - Authentic Kebabs in Lucknow", description: "Experience premium hand-grilled kebabs at Kebabchi"}, -}; + title: "LuxeCore - Luxury Fashion Brand", description: "Premium fashion brand featuring luxury collections for men, women, and accessories."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +