From 13de54c9684f447c0e2a64ce8120379fd4ef2626 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 01:36:23 +0000 Subject: [PATCH 1/6] 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 078e701..271cc8d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -90,7 +90,7 @@ export default function AboutPage() { description="Locally operated since 2015, B.W. Earthworks is dedicated to delivering high-quality earthwork services across West Georgia. We take pride in our work, showing up on time and getting every job done right." subdescription="With hands-on experience, skilled equipment operators, and attention to detail, we've built our reputation on reliability and fair pricing. Our team handles projects of all sizes with professionalism and care." icon={Briefcase} - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-people-working-construction_23-2150772878.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-people-working-construction_23-2150772878.jpg?_wi=2" imageAlt="construction team on job site worksite" mediaAnimation="slide-up" useInvertedBackground={true} -- 2.49.1 From 9717fcb68c0b5504e98b5671cd2b95ad5d881759 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 01:36:23 +0000 Subject: [PATCH 2/6] 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 b0753b3..02f3cfd 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -82,7 +82,7 @@ export default function ContactPage() { Date: Thu, 19 Mar 2026 01:36:24 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..0468e08 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "B.W. Earthworks Grading & Hauling | Buchanan GA", + description: "Professional grading, excavation, and hauling services in Buchanan, GA. 4.7-star rated local contractor serving West Georgia. Call (404) 535-1444 for free quote.", + keywords: "grading contractor Buchanan GA, excavation services Georgia, hauling services near me, land clearing Buchanan GA, site preparation, driveway grading", + metadataBase: new URL("https://bwearthworks.com"), + alternates: { + canonical: "https://bwearthworks.com", + }, + openGraph: { + title: "B.W. Earthworks Grading & Hauling | Expert Local Contractor", + description: "Professional grading, excavation, and hauling services in Buchanan, GA. 4.7-star rated, fully licensed and insured.", + url: "https://bwearthworks.com", + siteName: "B.W. Earthworks", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/high-angle-shot-two-excavators-building-site_181624-7771.jpg", + alt: "B.W. Earthworks excavator equipment", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "B.W. Earthworks Grading & Hauling", + description: "Professional grading and excavation contractor in Buchanan, GA. 4.7-star rated.", + images: ["http://img.b2bpic.net/free-photo/high-angle-shot-two-excavators-building-site_181624-7771.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}