From ae8f48454a5f888e170c14b39667624bc4375973 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 09:43:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1387 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1387 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..44d2de2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1387 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "C&L Landscaping - Houston Landscaping & Tree Services", description: "Professional landscaping, tree services, and property improvements in Houston. Fast response, honest pricing, and spotless cleanup. Call for your free estimate today."}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} +