From ba0a67a5930f1a2094b671a19ea4c243853fa1c8 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 21:30:38 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1411 +------------------------------------------- 1 file changed, 6 insertions(+), 1405 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bc339d7..a686f3a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,20 @@ 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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Landscaping Services | GreenSpace Pro", description: "Expert landscaping company offering lawn mowing, garden design, mulch installation, and more. View our portfolio and get a free quote today.", keywords: "landscaping, lawn care, garden design, mulch, gutter cleaning, landscape design", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Professional Landscaping Services | GreenSpace Pro", description: "Transform your outdoor space with expert landscaping services", siteName: "GreenSpace Pro", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/grass-background_1127-3418.jpg", alt: "Beautiful landscape project"}, - ], - }, -}; + title: "Greenedge Landscaping | Professional Outdoor Design", description: "Transform your outdoor space with expert landscaping services. Lawn mowing, garden design, mulch installation, and more since 2022."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -