From 65ebd0b8f6e969d5d7fe48a2b2251ac4554af17b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:51:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 57 ++++++++-------------------------------------- 1 file changed, 10 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e16e68..6e580da 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,21 @@ -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"], -}); +import type { Metadata } from 'next'; +import './globals.css'; export const metadata: Metadata = { - title: "Rama Traders - Fabric Manufacturer & Supplier in Raipur", description: "Premium quality fabrics and textiles from trusted local manufacturer in Raipur. Cotton, suit fabric, dress materials. Wholesale pricing, fast delivery, 5-star rated.", keywords: "fabric supplier Raipur, cloth manufacturer Raipur, wholesale fabric, textile supplier, cotton fabric, suit fabric, dress material, fabric wholesaler, local fabric store", metadataBase: new URL("https://ramatraders.local"), - alternates: { - canonical: "https://ramatraders.local"}, - openGraph: { - title: "Rama Traders - Quality Fabric Supplier in Raipur", description: "Premium fabrics and textiles from Raipur's trusted manufacturer. Wholesale pricing, fast local delivery, 5-star customer reviews.", url: "https://ramatraders.local", siteName: "Rama Traders", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/human-hand-cutting-christmas-paper_329181-6207.jpg", alt: "Premium fabric collection from Rama Traders"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Rama Traders - Fabric Supplier Raipur", description: "High-quality fabrics, wholesale prices, trusted by local retailers. Call 08319914499", images: ["http://img.b2bpic.net/free-photo/human-hand-cutting-christmas-paper_329181-6207.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Rama Traders - Trusted Fabric Manufacturer in Raipur', + description: 'High-quality fabrics and textiles for retailers and businesses. Premium materials, competitive wholesale pricing, and fast supply from your local trusted supplier in Raipur.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +