diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 147e79f..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2789 +0,0 @@ -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"], -}); - -export const metadata: Metadata = { - title: "C&L Landscaping & Tree Services Houston | Free Estimates", description: "Premium landscaping & tree services in Houston. Same-day estimates, honest pricing, spotless cleanup. 15+ years serving Houston homeowners. Call for free quote.", keywords: "landscaping Houston, tree services Houston, lawn care, landscape design, arborist, property maintenance", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "C&L Landscaping - Transform Your Houston Property", description: "Professional landscaping, tree services & property improvements. Fast response, honest pricing, beautiful results. Get your free estimate today.", type: "website", siteName: "C&L Landscaping", images: [ - { - url: "http://img.b2bpic.net/free-photo/stone-road_1417-1558.jpg", alt: "luxury backyard landscape design modern patio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "C&L Landscaping Houston - Professional Tree & Lawn Services", description: "Same-day estimates, 15+ years experience, 5,000+ satisfied customers. Call (713) 555-0142", images: ["http://img.b2bpic.net/free-photo/stone-road_1417-1558.jpg"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -