diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ba390f9..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Local Property Maintenance | Lawn Care & Landscaping Services", description: "Professional lawn care, landscaping, pressure washing & property maintenance in Hendersonville. Free estimates, 24-hour response. Trusted by 500+ local homeowners.", keywords: "lawn care, landscaping, pressure washing, gutter cleaning, property maintenance, Hendersonville", metadataBase: new URL("https://othersideproperty.com"), - openGraph: { - title: "The Other Side Property Maintenance | Local Service You Can Trust", description: "Professional lawn care and property maintenance serving Hendersonville and surrounding areas. Free estimates available.", type: "website", siteName: "The Other Side Property Maintenance", images: [ - { - url: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803969.jpg", alt: "Professional lawn maintenance service" - } - ] - }, - twitter: { - card: "summary_large_image", title: "The Other Side Property Maintenance", description: "Reliable lawn care and property maintenance in Hendersonville", images: ["http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803969.jpg"] - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -