Merge version_1 into main #1
@@ -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}
|
||||
|
||||
@@ -82,7 +82,7 @@ export default function ContactPage() {
|
||||
<ContactSplitForm
|
||||
title="Get Your Free Quote Today"
|
||||
description="Contact B.W. Earthworks for reliable grading, excavation, and hauling services. Fill out the form or call (404) 535-1444 for immediate assistance."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-with-bulldozer-sand-quarry_1303-28102.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-with-bulldozer-sand-quarry_1303-28102.jpg?_wi=3"
|
||||
imageAlt="B.W. Earthworks equipment"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${figtree.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -97,7 +97,7 @@ export default function HomePage() {
|
||||
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={Star}
|
||||
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=1"
|
||||
imageAlt="B.W. Earthworks team on job site"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
@@ -176,7 +176,7 @@ export default function HomePage() {
|
||||
role: "Homeowner",
|
||||
company: "Buchanan, GA",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/picture-cheerful-caucasian-man-studio_176420-7231.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/picture-cheerful-caucasian-man-studio_176420-7231.jpg?_wi=1",
|
||||
imageAlt: "professional man portrait business headshot",
|
||||
},
|
||||
{
|
||||
@@ -185,7 +185,7 @@ export default function HomePage() {
|
||||
role: "General Contractor",
|
||||
company: "West Georgia Builders",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg?_wi=1",
|
||||
imageAlt: "professional woman portrait business headshot",
|
||||
},
|
||||
{
|
||||
@@ -194,7 +194,7 @@ export default function HomePage() {
|
||||
role: "Property Developer",
|
||||
company: "Torres Development",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg?_wi=1",
|
||||
imageAlt: "man portrait business professional headshot",
|
||||
},
|
||||
{
|
||||
@@ -203,7 +203,7 @@ export default function HomePage() {
|
||||
role: "Landscape Designer",
|
||||
company: "Davis Landscapes",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg?_wi=1",
|
||||
imageAlt: "woman portrait business professional headshot",
|
||||
},
|
||||
{
|
||||
@@ -212,7 +212,7 @@ export default function HomePage() {
|
||||
role: "Site Manager",
|
||||
company: "Metro Atlanta Construction",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-middle-aged-man-with-beard-hairstyle-dressed-elegant-blue-suit-textured-dark-background-studio_613910-19853.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-middle-aged-man-with-beard-hairstyle-dressed-elegant-blue-suit-textured-dark-background-studio_613910-19853.jpg?_wi=1",
|
||||
imageAlt: "man worker portrait professional headshot",
|
||||
},
|
||||
{
|
||||
@@ -221,7 +221,7 @@ export default function HomePage() {
|
||||
role: "Real Estate Agent",
|
||||
company: "Williams Realty",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-warehouse_23-2148923087.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-warehouse_23-2148923087.jpg?_wi=1",
|
||||
imageAlt: "woman worker portrait professional headshot",
|
||||
},
|
||||
]}
|
||||
@@ -276,7 +276,7 @@ export default function HomePage() {
|
||||
<ContactSplitForm
|
||||
title="Get Your Free Quote Today"
|
||||
description="Contact B.W. Earthworks for reliable grading, excavation, and hauling services. Fill out the form or call (404) 535-1444 for immediate assistance."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-with-bulldozer-sand-quarry_1303-28102.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-with-bulldozer-sand-quarry_1303-28102.jpg?_wi=1"
|
||||
imageAlt="B.W. Earthworks equipment"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -97,10 +97,10 @@ export default function ProjectsPage() {
|
||||
title: "Land Clearing",
|
||||
description: "Professional land clearing for residential lots, commercial sites, and pipeline projects. We handle debris removal and site preparation efficiently.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-climbing-rocks-nature_23-2148776352.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-climbing-rocks-nature_23-2148776352.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beard-worker-man-suit-construction-worker-safety-orange-helmet-against-dump-truck-with-hammer-adjustable-wrench-hand_627829-11393.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beard-worker-man-suit-construction-worker-safety-orange-helmet-against-dump-truck-with-hammer-adjustable-wrench-hand_627829-11393.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -108,10 +108,10 @@ export default function ProjectsPage() {
|
||||
title: "Grading & Leveling",
|
||||
description: "Expert grading services to ensure proper drainage and site preparation. Perfect for driveways, building pads, and landscaping projects.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/harvesters-combine-parts-plant-are-waiting-sales_146671-19094.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/harvesters-combine-parts-plant-are-waiting-sales_146671-19094.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/truck-driving-mountain-road_158595-6128.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/truck-driving-mountain-road_158595-6128.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -119,10 +119,10 @@ export default function ProjectsPage() {
|
||||
title: "Excavation Services",
|
||||
description: "Full excavation capabilities for foundations, trenching, and site work. Our equipment and expertise ensure precise, efficient execution.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-with-orange-vest-pointing_23-2148269877.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-with-orange-vest-pointing_23-2148269877.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/construction-site-with-old-pipes-dug-out_23-2148254078.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/construction-site-with-old-pipes-dug-out_23-2148254078.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
]}
|
||||
@@ -160,7 +160,7 @@ export default function ProjectsPage() {
|
||||
role: "Homeowner",
|
||||
company: "Buchanan, GA",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/picture-cheerful-caucasian-man-studio_176420-7231.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/picture-cheerful-caucasian-man-studio_176420-7231.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -168,7 +168,7 @@ export default function ProjectsPage() {
|
||||
role: "General Contractor",
|
||||
company: "West Georgia Builders",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -176,7 +176,7 @@ export default function ProjectsPage() {
|
||||
role: "Property Developer",
|
||||
company: "Torres Development",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -184,7 +184,7 @@ export default function ProjectsPage() {
|
||||
role: "Landscape Designer",
|
||||
company: "Davis Landscapes",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -192,7 +192,7 @@ export default function ProjectsPage() {
|
||||
role: "Site Manager",
|
||||
company: "Metro Atlanta Construction",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-middle-aged-man-with-beard-hairstyle-dressed-elegant-blue-suit-textured-dark-background-studio_613910-19853.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-middle-aged-man-with-beard-hairstyle-dressed-elegant-blue-suit-textured-dark-background-studio_613910-19853.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -200,7 +200,7 @@ export default function ProjectsPage() {
|
||||
role: "Real Estate Agent",
|
||||
company: "Williams Realty",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-warehouse_23-2148923087.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-warehouse_23-2148923087.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
@@ -59,10 +59,10 @@ export default function ServicesPage() {
|
||||
title: "Land Clearing",
|
||||
description: "Professional land clearing for residential lots, commercial sites, and pipeline projects. We handle debris removal and site preparation efficiently.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-climbing-rocks-nature_23-2148776352.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-climbing-rocks-nature_23-2148776352.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beard-worker-man-suit-construction-worker-safety-orange-helmet-against-dump-truck-with-hammer-adjustable-wrench-hand_627829-11393.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beard-worker-man-suit-construction-worker-safety-orange-helmet-against-dump-truck-with-hammer-adjustable-wrench-hand_627829-11393.jpg?_wi=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -70,10 +70,10 @@ export default function ServicesPage() {
|
||||
title: "Grading & Leveling",
|
||||
description: "Expert grading services to ensure proper drainage and site preparation. Perfect for driveways, building pads, and landscaping projects.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/harvesters-combine-parts-plant-are-waiting-sales_146671-19094.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/harvesters-combine-parts-plant-are-waiting-sales_146671-19094.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/truck-driving-mountain-road_158595-6128.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/truck-driving-mountain-road_158595-6128.jpg?_wi=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -81,10 +81,10 @@ export default function ServicesPage() {
|
||||
title: "Excavation Services",
|
||||
description: "Full excavation capabilities for foundations, trenching, and site work. Our equipment and expertise ensure precise, efficient execution.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-with-orange-vest-pointing_23-2148269877.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-with-orange-vest-pointing_23-2148269877.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/construction-site-with-old-pipes-dug-out_23-2148254078.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/construction-site-with-old-pipes-dug-out_23-2148254078.jpg?_wi=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -171,7 +171,7 @@ export default function ServicesPage() {
|
||||
<ContactSplitForm
|
||||
title="Get Your Free Quote Today"
|
||||
description="Contact B.W. Earthworks for reliable grading, excavation, and hauling services. Fill out the form or call (404) 535-1444 for immediate assistance."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-with-bulldozer-sand-quarry_1303-28102.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-with-bulldozer-sand-quarry_1303-28102.jpg?_wi=2"
|
||||
imageAlt="B.W. Earthworks equipment"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user