From 920a84106d688a6a45349257abcff71079e6466a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 00:36:38 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 48 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index adbce99..22a07df 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,20 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Countryside Landscaping LLC | Professional Landscaping Roanoke VA", - description: "Award-winning landscaping company in Roanoke, VA. 5-star rated lawn care, landscape design, mulching & hardscaping. Free estimates. Locally owned & insured.", - keywords: "landscaping Roanoke VA, lawn care Roanoke, landscape contractor, mulching services, hardscaping, landscape design", - metadataBase: new URL("https://countrysidelandscaping.com"), - alternates: { - canonical: "https://countrysidelandscaping.com", - }, - openGraph: { - title: "Countryside Landscaping LLC | Professional Landscaping Roanoke VA", - description: "Transform your yard with professional landscaping services. 5-star rated, locally owned, and fully insured.", - siteName: "Countryside Landscaping LLC", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-cactus-with-blurred-background_23-2148249096.jpg", - alt: "Professional landscaping project in Roanoke VA", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Countryside Landscaping LLC | Professional Landscaping Roanoke VA", - description: "Award-winning landscaping services for Roanoke homeowners. Free estimates available.", - images: [ - "http://img.b2bpic.net/free-photo/close-up-cactus-with-blurred-background_23-2148249096.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Countryside Landscaping | Professional Landscaping Services in Roanoke, VA", description: "Licensed & Insured landscaping services for Roanoke, VA. 5-star rated, locally owned, 24/7 support. Lawn care, design, hardscaping & more."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}