From 2310d8ff8e05ec9c07117c2de4ba5c95f5f53cf8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 00:07:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a91e453..5891428 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Landscaping in Woodbourne-Hyde Park | 24/7 Services", description: "Expert landscape design, installations, and 24/7 emergency services in Woodbourne-Hyde Park. Family-owned, 20+ years experience. Free estimates, full warranty.", keywords: "landscaping Woodbourne-Hyde Park, landscape design, emergency landscaping, local landscapers, outdoor water features, landscape installation", openGraph: { - title: "Pro Landscaping | Woodbourne-Hyde Park's Trusted Landscaper", description: "Professional landscaping services for 20+ years. Design, installation, and 24/7 emergency response.", siteName: "Pro Landscaping", type: "website"}, - twitter: { - card: "summary_large_image", title: "Pro Landscaping | Trusted Landscaper in Woodbourne-Hyde Park", description: "Expert landscape design and emergency services. 20+ years experience. Call (937) 240-6570"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Pro Landscaping - Professional Services for Woodbourne-Hyde Park", description: "Expert landscape design, installations, and 24/7 emergency services. Family-owned, locally operated, fully warranted work."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}