From 4ca2f696cb147f6231792ebb25cb85aef8217dba Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 04:42:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 77 +++++++++++++++++++++++++++------------------- 1 file changed, 45 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6361d96..16f4deb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,64 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/service/ServiceWrapper"; +import Tag from "@/components/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Home Boutique - Premium Tailored Suits | Custom Fits from Home", description: "Premium bespoke tailored suits delivered to your home. Expert craftsmanship, affordable luxury suits with custom fit. Call +91 9007961006 for personalized styling.", keywords: "tailored suits, custom suits, premium suits, bespoke tailoring, men's formal wear, home delivery suits", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Home Boutique - Premium Tailored Suits", description: "Discover premium bespoke tailored suits crafted from home with expert tailoring and affordable luxury.", type: "website", siteName: "Home Boutique"}, - twitter: { - card: "summary_large_image", title: "Home Boutique - Premium Tailored Suits", description: "Premium bespoke tailored suits delivered to your home. Expert craftsmanship, affordable luxury."}, -}; + title: "Home Boutique - Premium Tailored Suits", description: "Premium tailored suits crafted from home. Bespoke fits, premium fabrics, and exceptional craftsmanship for the modern gentleman."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +