From a19295f78dbe2db344c7cb1466f8c7393066f839 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:14:09 +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 3303ba5..a2c40c7 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 { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Nanda Readymade | Affordable Family Clothing Store in Nashik", description: "Shop quality ready-made clothes for men, women, and kids at affordable prices. Visit Nanda Readymade near Trimutti Chowk, Nashik. Call 075884 17178 today.", keywords: "clothing store Nashik, ready-made garments, family clothes, affordable fashion, Trimurti Chowk", metadataBase: new URL("https://nanda-readymade.local"), - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Nanda Readymade | Family Clothing Store in Nashik", description: "Affordable ready-made clothes for the whole family at Nanda Readymade, Nashik.", url: "https://nanda-readymade.local", siteName: "Nanda Readymade", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-man-looking-clothes-hanging-rail-shop_23-2148175643.jpg", alt: "Nanda Readymade Store"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Nanda Readymade | Family Clothing Store in Nashik", description: "Quality ready-made clothes at affordable prices for families.", images: ["http://img.b2bpic.net/free-photo/side-view-man-looking-clothes-hanging-rail-shop_23-2148175643.jpg"], - }, -}; + title: "Nanda Readymade - Affordable Family Clothing in Nashik", description: "Quality ready-made clothes for men, women, and kids at budget-friendly prices. Visit Nanda Readymade near Trimurti Chowk, Nashik."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}