From 0123849023fc58a47e80de34428371047e3212eb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:50:24 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e8f9bc6..fa5d16c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "FlameWeeds | Professional Weed Burning Tool for Pavement", description: "Say goodbye to stubborn weeds between pavement. FlameWeeds delivers fast, effective chemical-free weed burning. Shop professional-grade tools today.", keywords: "weed burner, pavement weed control, outdoor tool, propane weed burner, driveway cleaning", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "FlameWeeds | Professional Weed Burning Tool", description: "Fast, safe, chemical-free weed burning for perfect pavement. Professional-grade tools for homeowners and contractors.", siteName: "FlameWeeds", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/unrecognizable-maintenance-worker-taking-care-court-autumn-low-angle-view-male-worker_7502-10255.jpg", alt: "FlameWeeds Professional Weed Burner"}, - ], - }, - twitter: { - card: "summary_large_image", title: "FlameWeeds | Professional Weed Burning", description: "Chemical-free weed control for pavement", images: ["http://img.b2bpic.net/free-photo/unrecognizable-maintenance-worker-taking-care-court-autumn-low-angle-view-male-worker_7502-10255.jpg"], - }, -}; + title: "FlameWeeds - Professional Weed Burning Tool", description: "Advanced weed burning technology for perfect pavement maintenance"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}