From beaa87e67f3f7b3150b0d04a7a97a2e3483cb07b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 05:42:51 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++-------------------------------------- 1 file changed, 6 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 77f6f7d..9a44613 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ARS Fashion Boutique | Premium Women's Boutique in Kovilpatti", description: "Discover stylish women's dresses, designer blouses and boutique stitching at ARS Fashion Boutique in Kovilpatti. Premium quality at affordable prices. Call or WhatsApp today.", keywords: "boutique in Kovilpatti, women boutique Kovilpatti, designer blouse Kovilpatti, ladies boutique near me, fashion boutique Kovilpatti, ethnic wear, salwar suits, custom stitching", openGraph: { - title: "ARS Fashion Boutique - Premium Women's Fashion in Kovilpatti", description: "Explore designer blouses, ethnic wear, and custom stitching at ARS Fashion Boutique. Quality fabrics at affordable prices.", type: "website", siteName: "ARS Fashion Boutique", images: [ - { - url: "http://img.b2bpic.net/free-photo/brunette-gorgeous-girl-clothing-store-boutique-casual-clothes-gray-coat_627829-9098.jpg", alt: "ARS Fashion Boutique Premium Collections"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ARS Fashion Boutique | Premium Women's Boutique in Kovilpalli", description: "Designer blouses, ethnic wear, and boutique stitching at affordable prices.", images: [ - "http://img.b2bpic.net/free-photo/brunette-gorgeous-girl-clothing-store-boutique-casual-clothes-gray-coat_627829-9098.jpg"], - }, -}; + title: "ARS Fashion Boutique | Premium Women's Fashion in Kovilpatti", description: "Designer dresses, boutique stitching, and quality fabrics at affordable prices. Trusted by 500+ women in Kovilpatti."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}