From 638aa4b45c2fa29d5e52d8ecb7b2c0b36e0e06fa Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 19:53:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 39 ++++++--------------------------------- 1 file changed, 6 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82e2fe6..7acdc01 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Handmade Kurtis for Women | Artisan Kurtis", description: "Discover premium handmade kurtis for women. Artisanal designs, premium fabrics, and custom personalization. Order now on WhatsApp. Free shipping across India.", keywords: "handmade kurtis, ethnic wear, artisan kurtis, women clothing, traditional kurti, custom kurtis, premium fabrics", openGraph: { - title: "Handmade Kurtis for Women | Artisan Kurtis", description: "Discover premium handmade kurtis for women. Artisanal designs, premium fabrics, and custom personalization.", siteName: "Artisan Kurtis", type: "website"}, - twitter: { - card: "summary_large_image", title: "Handmade Kurtis for Women | Artisan Kurtis", description: "Discover premium handmade kurtis for women. Artisanal designs, premium fabrics, and custom personalization."}, -}; + title: "Artisan Kurtis", description: "Handcrafted Kurtis for the Modern Woman"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}