From ff83b7852da0194bb00ad6046a26070ae91313ea Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:19:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 8 insertions(+), 1430 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9897086..123ef52 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ 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 "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "JunkClear - Junk Removal Service & Payment Platform", - description: "Professional junk removal with integrated payment processing, invoicing, receipts, and secure customer management. Get free quotes today.", - keywords: "junk removal, waste removal, professional cleanup, payment processing, invoicing, customer management", - metadataBase: new URL("https://junkclear.com"), - alternates: { - canonical: "https://junkclear.com", - }, - openGraph: { - title: "JunkClear - Professional Junk Removal Service", - description: "Fast, reliable, eco-friendly junk removal with transparent pricing and complete documentation.", - url: "https://junkclear.com", - siteName: "JunkClear", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/cart-with-tree-logs-rural-landscape-back-view_169016-18167.jpg", - alt: "JunkClear professional junk removal service", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "JunkClear - Professional Junk Removal", - description: "Transparent pricing, secure payments, professional service.", - images: ["http://img.b2bpic.net/free-photo/cart-with-tree-logs-rural-landscape-back-view_169016-18167.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "JunkClear - Professional Junk Removal Services", description: "Fast, reliable, and eco-friendly junk removal services with transparent pricing, secure payments, and complete documentation."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -