From 283f3629c8d56a55d33ea5b3c97acbd5ebbcb9a7 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 01:52:02 +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 35c235c..ed8d4f7 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 { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "JP Lawn Care+ | Professional Lawn Mowing & Landscaping in Wilmington, DE", description: "Professional lawn care and landscaping services in Wilmington, DE. Over 6 years of experience. Mowing, landscape design, mulching, trimming, and seasonal cleanup.", keywords: "lawn care Wilmington DE, landscaping Delaware, lawn mowing service, yard maintenance, hedge trimming, mulch installation", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "JP Lawn Care+ | Professional Landscaping Wilmington, DE", description: "Reliable lawn care and landscaping services in Wilmington, Delaware. Professional service with 6+ years of experience.", type: "website", siteName: "JP Lawn Care+", images: [ - { - url: "http://img.b2bpic.net/free-photo/attractive-gardener-posing-while-trimming-conifer-bush-by-electric-hedge-clippers-sunny-day_7502-10442.jpg", alt: "Professional lawn care and landscaping services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "JP Lawn Care+ | Wilmington, DE Landscaping", description: "Professional lawn care, landscaping, and yard maintenance in Wilmington, Delaware.", images: ["http://img.b2bpic.net/free-photo/attractive-gardener-posing-while-trimming-conifer-bush-by-electric-hedge-clippers-sunny-day_7502-10442.jpg"], - }, -}; + title: "JP Lawn Care+ | Professional Lawn Care & Landscaping in Wilmington, DE", description: "Professional lawn care and landscaping services in Wilmington, Delaware. Over 6 years of experience. Fair pricing, expert service, and results you can trust."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}