Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-04-02 23:00:58 +00:00

View File

@@ -8,7 +8,6 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
import Link from "next/link";
const navItems = [{ name: "Home", id: "/" }];
@@ -37,12 +36,12 @@ export default function Page() {
tag="Serving Western Montana Since 2008"
buttons={[{ text: "Call Dave Today", href: "tel:+14065429674" }, { text: "View Services", href: "#services" }]}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/plumber-man-fixing-kitchen-sink_53876-27.jpg", imageAlt: "Professional plumbing repair services in Western Montana" },
{ imageSrc: "http://img.b2bpic.net/free-photo/worker-repairing-water-heater_23-2149334225.jpg", imageAlt: "Water heater maintenance service" },
{ imageSrc: "http://img.b2bpic.net/free-photo/owner-holding-cat-turning-up-heat_23-2149339579.jpg", imageAlt: "Furnace and heating inspection" },
{ imageSrc: "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg", imageAlt: "Precision pipe repair work" },
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man_23-2149045778.jpg", imageAlt: "Local plumbing professional Dave Dill" },
{ imageSrc: "http://img.b2bpic.net/free-photo/plumber-man-fixing-kitchen-sink_53876-27.jpg", imageAlt: "Montana home plumbing services" }
{ imageSrc: "http://img.b2bpic.net/free-photo/plumber-man-fixing-kitchen-sink_53876-27.jpg", imageAlt: "plumber at work residential interior" },
{ imageSrc: "http://img.b2bpic.net/free-photo/worker-repairing-water-heater_23-2149334225.jpg", imageAlt: "water heater repair technician" },
{ imageSrc: "http://img.b2bpic.net/free-photo/owner-holding-cat-turning-up-heat_23-2149339579.jpg", imageAlt: "heating system furnace repair" },
{ imageSrc: "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg", imageAlt: "pipe repair leaky faucet" },
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man_23-2149045778.jpg", imageAlt: "friendly local business owner portrait" },
{ imageSrc: "http://img.b2bpic.net/free-photo/plumber-man-fixing-kitchen-sink_53876-27.jpg", imageAlt: "plumber at work residential interior" }
]}
/>
</div>
@@ -66,7 +65,11 @@ export default function Page() {
<div id="about" data-section="about">
<InlineImageSplitTextAbout
useInvertedBackground={true}
heading={[{ type: "text", content: "Meet Dave Dill" }, { type: "image", src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man_23-2149045778.jpg", alt: "Dave Dill owner-operator" }, { type: "text", content: "Owner-Operator for over 15 years." }]}
heading={[
{ type: "text", content: "Meet Dave Dill" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man_23-2149045778.jpg", alt: "friendly local business owner portrait" },
{ type: "text", content: "Owner-Operator for over 15 years." }
]}
/>
</div>
<div id="reviews" data-section="reviews">
@@ -76,11 +79,11 @@ export default function Page() {
cardTag="4.1 Stars"
cardAnimation="slide-up"
testimonials={[
{ id: "t1", name: "Lam Nguyen-Bull", imageSrc: "http://img.b2bpic.net/free-photo/smiling-asian-woman-holding-clean-folded-clothes-home_1262-18067.jpg" },
{ id: "t2", name: "Katherine Christensen", imageSrc: "http://img.b2bpic.net/free-photo/happy-satisfied-customer-making-ok-gesture_74855-2298.jpg" },
{ id: "t3", name: "Deborah Sloan", imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-smiling-restaurant_23-2149316809.jpg" },
{ id: "t4", name: "Christian Dill", imageSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-with-arms-crossed_23-2148414862.jpg" },
{ id: "t5", name: "mamamsla", imageSrc: "http://img.b2bpic.net/free-photo/side-view-family-celebrating-birthday-together_23-2150598986.jpg" }
{ id: "t1", name: "Lam Nguyen-Bull", imageSrc: "http://img.b2bpic.net/free-photo/smiling-asian-woman-holding-clean-folded-clothes-home_1262-18067.jpg", imageAlt: "customer review portrait friendly" },
{ id: "t2", name: "Katherine Christensen", imageSrc: "http://img.b2bpic.net/free-photo/happy-satisfied-customer-making-ok-gesture_74855-2298.jpg", imageAlt: "homeowner portrait portrait" },
{ id: "t3", name: "Deborah Sloan", imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-smiling-restaurant_23-2149316809.jpg", imageAlt: "customer smiling" },
{ id: "t4", name: "Christian Dill", imageSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-with-arms-crossed_23-2148414862.jpg", imageAlt: "homeowner portrait portrait" },
{ id: "t5", name: "mamamsla", imageSrc: "http://img.b2bpic.net/free-photo/side-view-family-celebrating-birthday-together_23-2150598986.jpg", imageAlt: "happy customer residential" }
]}
/>
</div>
@@ -104,4 +107,4 @@ export default function Page() {
</div>
</ThemeProvider>
);
}
}