From 9aa6864f14aae94bf10b7b51364e02027c38259e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 08:03:01 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..ced2c70 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Manrope } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Sri Mani Bala Interiors - Premium Interior Design in Thanjavur", + description: "Transform your home with luxury interior designs, modular kitchens, TV units, and premium woodwork. 45+ years of craftsmanship in Thanjavur.", + keywords: "interior designers Thanjavur, modular kitchen Thanjavur, TV unit design, wooden interior work, premium interiors, interior design services", + metadataBase: new URL("https://srimanibalainteriors.com"), + alternates: { + canonical: "https://srimanibalainteriors.com", + }, + openGraph: { + title: "Sri Mani Bala Interiors - Luxury Interior Design", + description: "Premium interior design and craftsmanship in Thanjavur. Modular kitchens, TV units, wardrobes, and custom wooden interiors.", + url: "https://srimanibalainteriors.com", + siteName: "Sri Mani Bala Interiors & Traders", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/luxury-bedroom-illuminated-by-modern-electric-lamp-generated-by-ai_188544-28185.jpg", + alt: "Sri Mani Bala Interiors - Premium Interior Design", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Sri Mani Bala Interiors - Luxury Interiors Crafted With Precision", + description: "Transform your home with premium interior designs and expert craftsmanship in Thanjavur.", + images: ["http://img.b2bpic.net/free-photo/luxury-bedroom-illuminated-by-modern-electric-lamp-generated-by-ai_188544-28185.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}