From c08108b281744e0ba1cad3bd7cba83ea6a6e8bf3 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 01:40:31 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ccd28d0..dee4852 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -49,7 +49,7 @@ export default function AboutPage() { }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/successful-multiethnic-business-team_1262-20833.jpg" + imageSrc="http://img.b2bpic.net/free-photo/successful-multiethnic-business-team_1262-20833.jpg?_wi=3" imageAlt="Professional landscaping team at work" useInvertedBackground={false} /> -- 2.49.1 From c53a715ca4630379b55ed2d62601544c0e280c69 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 01:40:31 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..3eebe20 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,54 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Raleway } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Professional Lawn Care & Landscaping - Maury City, TN | Top Cut", + description: "Top Cut provides dependable lawn mowing, spring cleanups, and landscaping services for Maury City homeowners. 5-star rated, free estimates available.", + keywords: "lawn care Maury City TN, lawn service near me, landscaping Maury City, spring cleanup, professional lawn mowing", + metadataBase: new URL("https://topcut.local"), + alternates: { + canonical: "https://topcut.local", + }, + openGraph: { + title: "Professional Lawn Care & Landscaping - Maury City, TN", + description: "Dependable lawn care and landscaping services with 5-star reviews. Spring cleanups, mowing, shrub trimming, and more.", + url: "https://topcut.local", + siteName: "Top Cut Lawn & Landscape", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Professional Lawn Care - Maury City, TN", + description: "5-star rated lawn care and landscaping services. Call today for your free estimate.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +57,9 @@ export default function RootLayout({ return ( - + {children}