Update src/app/layout.tsx

This commit is contained in:
2026-03-10 04:42:48 +00:00
parent 9054ced685
commit 4ca2f696cb

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<body className={`${geist.variable} ${geistMono.variable}`}>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
<script
id="lenis-smooth-scroll"
dangerouslySetInnerHTML={{
__html: `
(function() {
try {
if (typeof Lenis !== 'undefined') {
const lenis = new Lenis({
duration: 1.2,
easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),
direction: 'vertical',
gestureDirection: 'vertical',
smooth: true,
mouseMultiplier: 1,
smoothTouch: false,
touchMultiplier: 2,
infinite: false,
});
function raf(time) {
lenis.raf(time);
requestAnimationFrame(raf);
}
requestAnimationFrame(raf);
}
} catch (e) {
console.warn('Lenis not loaded');
}
})();
`,
}}
/>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1426,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}