From 2e77f9ccf93eacbe8af5cd580ff52f6b90f0e4fd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 10:04:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1418 -------------------------------------------- 1 file changed, 1418 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7b445db..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +0,0 @@ -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"], -}); - -export const metadata: Metadata = { - title: "Professional Lawn Care Halifax | Clayton Park | 5-Star Rated", description: "Reliable lawn care in Halifax since 2012. 5-star rated service with safe products and proven seasonal programs. Call today for a free quote.", keywords: "lawn care Halifax, Halifax lawn service, weed control Halifax, lawn fertilization Halifax, residential lawn care Halifax, professional lawn care", openGraph: { - title: "Professional Lawn Care in Halifax | Clayton Park", description: "5-star rated lawn care service in Halifax. Reliable, professional, and reasonably priced.", siteName: "Clayton Park Lawn Care", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/unrecognizable-male-gardener-pushing-modern-lawn-mower-while-walking-grass-view-handyman_7502-10570.jpg", alt: "Professional lawn care service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Professional Lawn Care in Halifax", description: "5-star rated lawn care. Call (902) 123-4567 for a free quote.", images: ["http://img.b2bpic.net/free-photo/unrecognizable-male-gardener-pushing-modern-lawn-mower-while-walking-grass-view-handyman_7502-10570.jpg"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -