From 5f5ce4fe3b0cb4e8501956221313fc080d2f895f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 08:09:54 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1428 +------------------------------------------- 1 file changed, 26 insertions(+), 1402 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1454de..cb8cfbf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,43 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Plumblink Protea Soweto | Plumbing Supply Store", description: "Soweto's trusted plumbing & bathroom supply store. Quality materials, expert advice, competitive pricing. Call +27 87 287 1620 for pipes, fittings, fixtures & more.", keywords: "plumbing supplies Soweto, bathroom supplies Soweto, plumbing store, pipes and fittings, copper pipe supplier", metadataBase: new URL("https://plumblinkprotea.com"), - alternates: { - canonical: "https://plumblinkprotea.com" - }, - openGraph: { - title: "Plumblink Protea Soweto | Plumbing Supply Store", description: "Your trusted plumbing supply partner in Soweto. Quality materials, helpful staff, competitive prices.", type: "website", siteName: "Plumblink Protea Soweto", images: [ - { - url: "http://img.b2bpic.net/free-photo/female-hand-holding-white-drawer-store_181624-51792.jpg", alt: "modern plumbing supply store interior professional" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Plumblink Protea Soweto | Quality Plumbing Supplies", description: "Trusted plumbing store in Soweto. Expert advice, quality materials, competitive pricing.", images: ["http://img.b2bpic.net/free-photo/female-hand-holding-white-drawer-store_181624-51792.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Plumblink Protea Soweto | Quality Plumbing Supplies", description: "Your trusted plumbing supply store in Soweto. Quality materials, bathroom fixtures, and expert advice. Shop with confidence from Soweto's most trusted local supplier."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}