diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1e922f7..423bc62 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mahashay Garments - Premium Clothing in Dulhaghar, Aligarh", description: "Quality Indian garments for men, women, and children. Wedding wear, suits, salwar suits, and traditional clothing. Call now or visit our store in Dulhaghar.", keywords: "garments shop, clothing store, wedding wear, suits, salwar suits, men's wear, women's wear, Aligarh, Dulhaghar, traditional Indian clothing", metadataBase: new URL("https://mahashaygarments.com"), - alternates: { - canonical: "https://mahashaygarments.com"}, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Mahashay Garments - Premium Clothing in Dulhaghar", description: "Quality Indian garments for every occasion. Wedding wear, suits, traditional clothing.", url: "https://mahashaygarments.com", siteName: "Mahashay Garments", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/senior-man-looking-male-tailor-taking-fabric-from-shelf-workshop_23-2148180378.jpg", alt: "boutique clothing store interior warm lighting"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Mahashay Garments - Premium Clothing", description: "Quality Indian garments for men, women, and children.", images: ["http://img.b2bpic.net/free-photo/senior-man-looking-male-tailor-taking-fabric-from-shelf-workshop_23-2148180378.jpg"], - }, -}; + title: "Mahashay Garments - Premium Tailoring Since 1995", description: "Experience traditional Indian tailoring excellence. Premium clothing for weddings, celebrations, and everyday elegance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -