diff --git a/src/app/layout.tsx b/src/app/layout.tsx index be1bc62..6661736 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Super Cloth House | Premium Designer Clothing in Nakodar, Punjab", description: "Luxury designer sherwanis, lehengas & traditional wear. 15+ years of heritage, 4.9★ rated. Premium quality, authentic craftsmanship for weddings & celebrations.", keywords: "designer sherwanis, luxury lehengas, punjabi wedding wear, designer clothing nakodar, premium traditional wear, bridal collection", openGraph: { - title: "Super Cloth House - Luxury Designer Clothing", description: "Discover premium designer collections curated for Punjab's most discerning patrons.", siteName: "Super Cloth House", type: "website"}, - twitter: { - card: "summary_large_image", title: "Super Cloth House | Premium Designer Wear", description: "Luxury sherwanis, lehengas & traditional wear from Punjab's finest designer boutique."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Super Cloth House - Premium Designer Wear", description: "Discover luxury designer clothing curated for Punjab's most discerning patrons. 15+ years of heritage, thousands of satisfied customers, 4.9★ rated excellence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}