From 83915cd8b39f15ce5021656659d0cdaa7a144409 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:48:56 +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 aa47136..8e6ecd4 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 { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Lawn & Garden Services | GreenCare Local", description: "Reliable lawn mowing, hedge trimming and yard maintenance for homes. Fully insured, honest pricing, 5-star local reputation. Get your free quote today!", keywords: "lawn mowing, lawn care, garden maintenance, hedge trimming, yard maintenance, landscaping", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Professional Lawn & Garden Services | GreenCare", description: "Reliable local lawn care and garden maintenance with 5-star reviews. Call for your free quote!", type: "website", siteName: "GreenCare Lawn Services", images: [ - { - url: "http://img.b2bpic.net/free-photo/smiling-gardener-shirt-mowing-lawn-with-modern-lawn-mower-summer-season-side-view-brunet_7502-10485.jpg", alt: "professional lawn mowing service green grass"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Professional Lawn & Garden Services", description: "Reliable lawn mowing and yard maintenance in your area", images: [ - "http://img.b2bpic.net/free-photo/smiling-gardener-shirt-mowing-lawn-with-modern-lawn-mower-summer-season-side-view-brunet_7502-10485.jpg"], - }, -}; + title: "GreenCare Lawn Services", description: "Professional lawn mowing, hedge trimming and yard maintenance"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}