From abb29fd9d74609e6a1cd866dada5a79c9b919f57 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 18:20:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 11 insertions(+), 1408 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3d48226..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Hardware Store Coimbatore | Plumbing Pipes & Electrical Supplies", description: "Complete hardware, plumbing, and electrical supplies store in Coimbatore. UPVC/GI pipes, electrical wires, sanitary ware, and industrial tools. Same-day delivery available.", keywords: "hardware store Coimbatore, plumbing pipes, electrical supplies, UPVC pipes, GI pipes, sanitary ware, plumbing materials, Avinashi Road", metadataBase: new URL("https://prohardwarestore.com"), - alternates: { - canonical: "https://prohardwarestore.com"}, - openGraph: { - title: "Pro Hardware Store - Your Complete Plumbing & Electrical Solution", description: "Trusted supplier of pipes, fittings, electrical supplies, and tools in Coimbatore. Same-day delivery available.", url: "https://prohardwarestore.com", siteName: "Pro Hardware Store", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-working-carboard-factory_1303-22913.jpg", alt: "Pro Hardware Store - Complete Solutions"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Pro Hardware Store - Plumbing & Electrical Supplies", description: "Complete hardware solutions in Coimbatore. Pipes, electrical supplies, tools, and sanitary ware.", images: ["http://img.b2bpic.net/free-photo/man-working-carboard-factory_1303-22913.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -