From 7a544e1e38db2d9c2670c4db7a749671b8b39d7e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:20:33 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index fab73c3..f67e621 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -25,7 +25,7 @@ export default function ContactPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 7a3728513bcba75a8940148ce7629be54d234b82 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:20:33 +0000 Subject: [PATCH 2/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1437 +------------------------------------------- 1 file changed, 9 insertions(+), 1428 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a344312..80e6d57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Mark's Quality Lawn Care - Denver Lawn Service | Local & Trusted", - description: "Professional lawn care in Denver, CO. Mowing, aeration, fertilization & seasonal services. 4.8★ rated. Family-owned. Free quotes. Call (303) 420-2880.", - keywords: "lawn care Denver, lawn mowing Denver CO, lawn aeration Denver, Denver lawn service, affordable lawn care Denver, professional landscaping Denver", - metadataBase: new URL("https://marksqualitylawncare.com"), - alternates: { - canonical: "https://marksqualitylawncare.com", - }, - openGraph: { - title: "Mark's Quality Lawn Care - Denver's Trusted Lawn Service", - description: "Professional lawn mowing, aeration, and fertilization services in Denver. Family-owned business with 4.8★ rating. Free quotes available.", - url: "https://marksqualitylawncare.com", - siteName: "Mark's Quality Lawn Care", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-female-gardener-pruning-plants-garden_23-2148165258.jpg", - alt: "Professional lawn care in Denver", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Mark's Quality Lawn Care - Denver Lawn Service", - description: "Professional lawn mowing, aeration, fertilization. Family-owned Denver business. Free quotes.", - images: ["http://img.b2bpic.net/free-photo/close-up-female-gardener-pruning-plants-garden_23-2148165258.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Mark's Quality Lawn Care", description: "Professional lawn care services in Denver"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -