Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-11 03:25:10 +00:00
4 changed files with 56 additions and 28 deletions

View File

@@ -104,7 +104,7 @@ export default function ContactPage() {
required: true,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/couple-cheerful-business-colleagues-watching-content-computer-monitor-smiling-laughing-while-sitting-workplace-business-communication-concept_74855-11647.jpg"
imageSrc="http://img.b2bpic.net/free-photo/couple-cheerful-business-colleagues-watching-content-computer-monitor-smiling-laughing-while-sitting-workplace-business-communication-concept_74855-11647.jpg?_wi=3"
imageAlt="BuildCraft office workspace"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -1,29 +1,55 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Inter } 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 { Libre_Baskerville } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "BuildCraft - Professional Construction & Renovation Services",
description: "Expert construction services including home renovation, remodeling, roofing, and concrete work. Free quotes, licensed contractors, proven excellence.",
keywords: "construction, home renovation, remodeling, roofing, concrete work, Boston construction, general contractor",
metadataBase: new URL("https://buildcraft.com"),
alternates: {
canonical: "https://buildcraft.com",
},
openGraph: {
title: "BuildCraft - Professional Construction Services",
description: "Transform your home with professional construction and renovation services. Expert team, quality craftsmanship, proven results.",
url: "https://buildcraft.com",
siteName: "BuildCraft",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/low-angle-shot-modern-wooden-house-with-glass-terrace-borders_181624-5142.jpg",
alt: "BuildCraft Professional Construction",
},
],
},
twitter: {
card: "summary_large_image",
title: "BuildCraft - Professional Construction Services",
description: "Expert construction, renovation, and remodeling services in Boston.",
images: ["http://img.b2bpic.net/free-photo/low-angle-shot-modern-wooden-house-with-glass-terrace-borders_181624-5142.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -32,7 +58,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -44,4 +72,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -142,25 +142,25 @@ export default function HomePage() {
id: 1,
title: "Home Renovation",
description: "Complete home renovation services including kitchen remodels, bathroom updates, and whole-house transformations with modern design.",
imageSrc: "http://img.b2bpic.net/free-photo/man-standing-talking-colleagues_23-2147668768.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-standing-talking-colleagues_23-2147668768.jpg?_wi=1",
},
{
id: 2,
title: "Remodeling",
description: "Expert remodeling for any room in your home. We create functional, beautiful spaces that enhance your daily living.",
imageSrc: "http://img.b2bpic.net/free-photo/people-renovating-house-concept_53876-20664.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-renovating-house-concept_53876-20664.jpg?_wi=1",
},
{
id: 3,
title: "Roofing",
description: "Professional roofing installation and repair. Durable, weather-resistant solutions to protect your investment.",
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-with-hammer-building-roof-house_23-2148748848.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-with-hammer-building-roof-house_23-2148748848.jpg?_wi=1",
},
{
id: 4,
title: "Concrete Work",
description: "Quality concrete services for driveways, patios, foundations, and decorative concrete solutions.",
imageSrc: "http://img.b2bpic.net/free-photo/cantilever-loading-decks-concrete-frame-closeup-yellow-focus_169016-69863.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cantilever-loading-decks-concrete-frame-closeup-yellow-focus_169016-69863.jpg?_wi=1",
},
]}
textboxLayout="default"
@@ -189,7 +189,7 @@ export default function HomePage() {
handle: "@davidj_boston",
testimonial: "BuildCraft exceeded every expectation. Their attention to detail and professionalism is unmatched in the industry.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-man-black-jacket_613910-2534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-man-black-jacket_613910-2534.jpg?_wi=1",
},
{
id: "2",
@@ -197,7 +197,7 @@ export default function HomePage() {
handle: "@lisa_designs",
testimonial: "Outstanding work quality. The team was punctual, clean, and delivered exactly what was promised on time and budget.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg?_wi=1",
},
{
id: "3",
@@ -205,7 +205,7 @@ export default function HomePage() {
handle: "@robert_home",
testimonial: "Best construction company I've worked with. They truly care about customer satisfaction and it shows in every project.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-vector/team-people-office_24908-56316.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/team-people-office_24908-56316.jpg?_wi=1",
},
{
id: "4",
@@ -277,7 +277,7 @@ export default function HomePage() {
required: true,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/couple-cheerful-business-colleagues-watching-content-computer-monitor-smiling-laughing-while-sitting-workplace-business-communication-concept_74855-11647.jpg"
imageSrc="http://img.b2bpic.net/free-photo/couple-cheerful-business-colleagues-watching-content-computer-monitor-smiling-laughing-while-sitting-workplace-business-communication-concept_74855-11647.jpg?_wi=1"
imageAlt="BuildCraft office workspace"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -56,28 +56,28 @@ export default function ServicesPage() {
id: 1,
title: "Home Renovation",
description: "Complete home renovation services including kitchen remodels, bathroom updates, and whole-house transformations with modern design standards. We handle everything from initial planning through final inspection.",
imageSrc: "http://img.b2bpic.net/free-photo/man-standing-talking-colleagues_23-2147668768.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-standing-talking-colleagues_23-2147668768.jpg?_wi=2",
imageAlt: "kitchen renovation modern design interior remodel",
},
{
id: 2,
title: "Remodeling",
description: "Expert remodeling for any room in your home. We create functional, beautiful spaces that enhance your daily living and increase your property value with contemporary design and quality materials.",
imageSrc: "http://img.b2bpic.net/free-photo/people-renovating-house-concept_53876-20664.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-renovating-house-concept_53876-20664.jpg?_wi=2",
imageAlt: "bathroom remodeling modern design contemporary bathroom",
},
{
id: 3,
title: "Roofing",
description: "Professional roofing installation and repair services. Durable, weather-resistant solutions to protect your investment with premium materials and expert installation techniques.",
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-with-hammer-building-roof-house_23-2148748848.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-with-hammer-building-roof-house_23-2148748848.jpg?_wi=2",
imageAlt: "professional roofer installing new roof residential",
},
{
id: 4,
title: "Concrete Work",
description: "Quality concrete services for driveways, patios, foundations, and decorative concrete solutions. From functional to aesthetic, we deliver concrete projects that last.",
imageSrc: "http://img.b2bpic.net/free-photo/cantilever-loading-decks-concrete-frame-closeup-yellow-focus_169016-69863.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cantilever-loading-decks-concrete-frame-closeup-yellow-focus_169016-69863.jpg?_wi=2",
imageAlt: "concrete driveway installation poured concrete work",
},
]}
@@ -107,7 +107,7 @@ export default function ServicesPage() {
handle: "@davidj_boston",
testimonial: "Their roofing work was exceptional. Professional installation, clean work site, and the new roof looks amazing!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-man-black-jacket_613910-2534.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-man-black-jacket_613910-2534.jpg?_wi=2",
imageAlt: "professional business man corporate portrait",
},
{
@@ -116,7 +116,7 @@ export default function ServicesPage() {
handle: "@lisa_designs",
testimonial: "My kitchen renovation exceeded expectations. BuildCraft understood my vision and executed it perfectly.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg?_wi=2",
imageAlt: "professional business woman corporate portrait",
},
{
@@ -125,7 +125,7 @@ export default function ServicesPage() {
handle: "@robert_home",
testimonial: "The concrete patio work transformed our backyard. Beautiful craftsmanship and very professional team throughout.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-vector/team-people-office_24908-56316.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/team-people-office_24908-56316.jpg?_wi=2",
imageAlt: "professional man business portrait headshot",
},
]}
@@ -173,7 +173,7 @@ export default function ServicesPage() {
required: true,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/couple-cheerful-business-colleagues-watching-content-computer-monitor-smiling-laughing-while-sitting-workplace-business-communication-concept_74855-11647.jpg"
imageSrc="http://img.b2bpic.net/free-photo/couple-cheerful-business-colleagues-watching-content-computer-monitor-smiling-laughing-while-sitting-workplace-business-communication-concept_74855-11647.jpg?_wi=2"
imageAlt: "modern office workspace professional environment"
mediaAnimation="slide-up"
mediaPosition="right"