From bb2a528f329d63540b0cc8807717d3482a1a6486 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 05:03:30 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2c96af9..a4e6b85 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -63,7 +63,7 @@ export default function AboutPage() { title: "Average Rating", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/men-posing-garden-botanical-greenhouse-photoshoot_53876-133528.jpg" + imageSrc="http://img.b2bpic.net/free-photo/men-posing-garden-botanical-greenhouse-photoshoot_53876-133528.jpg?_wi=2" imageAlt="professional tree service team group photo" mediaAnimation="slide-up" metricsAnimation="slide-up" @@ -92,7 +92,7 @@ export default function AboutPage() { title: "Emergency Ready", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/crop-woman-adjusting-waist-bag_23-2147714892.jpg" + imageSrc="http://img.b2bpic.net/free-photo/crop-woman-adjusting-waist-bag_23-2147714892.jpg?_wi=2" imageAlt="professional tree removal crew working safely" mediaAnimation="slide-up" metricsAnimation="slide-up" From a1c3c5fcd70903b6f09f0510f1e2fc9e177cb66d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 05:03:30 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 09d0e94..fe9601f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -59,7 +59,7 @@ export default function ContactPage() { ]} buttonAnimation="slide-up" layoutOrder="default" - imageSrc="http://img.b2bpic.net/free-photo/crop-woman-adjusting-waist-bag_23-2147714892.jpg" + imageSrc="http://img.b2bpic.net/free-photo/crop-woman-adjusting-waist-bag_23-2147714892.jpg?_wi=3" imageAlt="professional tree removal crew working safely" mediaAnimation="slide-up" frameStyle="card" From 2a10f4e152fb11030e46af1be5bb3297daf0e661 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 05:03:31 +0000 Subject: [PATCH 3/4] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..ad7d1d5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,27 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "24/7 Emergency Tree Removal & Lawn Service | A-1 Discount", + description: "Professional tree removal, trimming, and stump grinding available 24/7. 4.8-star rated. Free estimates. Insurance-approved vendor. Same-day emergency service.", + keywords: "tree removal, emergency tree service, tree trimming, stump grinding, 24/7 tree service, storm damage cleanup, lawn care", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Fast, Professional Tree Removal & Lawn Care — 24/7", + description: "Emergency tree removal with guaranteed cleanup. 4.8-star rated local service. Call now for same-day estimates.", + type: "website", + siteName: "A-1 Discount Tree & Lawn Service", + }, + twitter: { + card: "summary_large_image", + title: "24/7 Emergency Tree Removal Service", + description: "Professional tree service you can trust. Fast response, fair pricing, complete cleanup guaranteed.", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +53,9 @@ export default function RootLayout({ return ( - + {children}