From 0577b4bc4f6043d3cf39c3a75c66a4a72f8987d2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:00:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9c61908..039217e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "LEVIT Boutique | Premium Fashion in Mangalore", description: "Discover curated fashion collections at LEVIT, Mangalore's premier boutique. Expert styling, exclusive pieces, and premium service. Open 10 AM - 11 PM daily.", keywords: "boutique, fashion, Mangalore, style, shopping, designer clothes", metadataBase: new URL("https://levitboutique.com"), - openGraph: { - title: "LEVIT Boutique | Curated Fashion Store in Mangalore", description: "Elevate your wardrobe with LEVIT's exclusive collections and personal styling services.", url: "https://levitboutique.com", siteName: "LEVIT Boutique", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-handsome-man-choosing-cloth-shop_1303-19847.jpg", alt: "LEVIT boutique - premium fashion destination"}, - ], - }, - twitter: { - card: "summary_large_image", title: "LEVIT Boutique - Premium Fashion in Mangalore", description: "Discover curated fashion collections and expert personal styling services.", images: ["http://img.b2bpic.net/free-photo/young-handsome-man-choosing-cloth-shop_1303-19847.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "LEVIT - Premium Fashion Boutique in Mangalore", description: "Discover curated fashion & contemporary style at LEVIT, Mangalore's premier boutique. Exclusive collections, personal styling, and premium quality."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}