From f8e24a3187502c92568fe560b5edeb62ee6da59e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:10:27 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++-------------------------------------- 1 file changed, 5 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f9fcc57..0ae6da4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,17 @@ 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"], -}); export const metadata: Metadata = { - title: "School Uniforms & Textiles in SR Nagar | Quality Uniforms & Tailoring", description: "Shop quality school uniforms, shoes, and tailoring services in SR Nagar. Trusted by parents for 15+ years. Call now for instant availability and pricing.", keywords: "school uniforms near me, school dress shop, school uniform stitching, school uniform store, tailoring services, kids uniform, school accessories", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "School Uniforms & Textiles - Quality Uniforms for Your Child", description: "Find all your child's school uniform needs in one place. Quality fabrics, expert tailoring, and friendly service.", type: "website", siteName: "School Uniforms & Textiles"}, - twitter: { - card: "summary_large_image", title: "School Uniforms in SR Nagar - Quality & Trusted", description: "Your local one-stop shop for quality school uniforms and tailoring services"}, -}; + title: "School Uniforms & Textiles - Quality Uniforms for Your Child", description: "Premium school uniforms, expert tailoring, and quick service in SR Nagar. Browse our complete collection or call now for instant availability."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}