Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-06-01 12:19:08 +00:00

View File

@@ -1,4 +1,4 @@
<pre><code class="language-tsx">"use client";
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
@@ -105,17 +105,17 @@ export default function PortfolioPage() {
description="Hear directly from our satisfied customers about their experience with Douglas Lawn & Landscaping."
testimonials={[
{
id: "1", name: "Sarah J.", role: "Homeowner", testimonial: "Douglas Lawn & Landscaping transformed our backyard into a true oasis. Their team was professional, communicative, and the quality of their work is outstanding!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-lady-black-jacket-posing-isolated-background-happy-cheerful-woman-dark-suit-laughing-looking-into-camera_197531-18513.jpg?_wi=2", imageAlt: "Sarah J."},
id: "1", name: "Sarah J.", role: "Homeowner", testimonial: "Douglas Lawn & Landscaping transformed our backyard into a true oasis. Their team was professional, communicative, and the quality of their work is outstanding!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-lady-black-jacket-posing-isolated-background-happy-cheerful-woman-dark-suit-laughing-looking-into-camera_197531-18513.jpg", imageAlt: "Sarah J."},
{
id: "2", name: "Michael D.", role: "Business Owner", testimonial: "Our commercial property has never looked better. The AI system for scheduling and updates is a game-changer. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/young-adult-traveling-using-sustainable-mobility_23-2149292681.jpg?_wi=2", imageAlt: "Michael D."},
id: "2", name: "Michael D.", role: "Business Owner", testimonial: "Our commercial property has never looked better. The AI system for scheduling and updates is a game-changer. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/young-adult-traveling-using-sustainable-mobility_23-2149292681.jpg", imageAlt: "Michael D."},
{
id: "3", name: "Emily R.", role: "Property Manager", testimonial: "From irrigation repair to seasonal cleanups, Douglas Lawn & Landscaping always delivers. Their efficiency and attention to detail are unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-woman-garage-sale_23-2150540717.jpg?_wi=2", imageAlt: "Emily R."},
id: "3", name: "Emily R.", role: "Property Manager", testimonial: "From irrigation repair to seasonal cleanups, Douglas Lawn & Landscaping always delivers. Their efficiency and attention to detail are unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-woman-garage-sale_23-2150540717.jpg", imageAlt: "Emily R."},
{
id: "4", name: "David K.", role: "Client", testimonial: "We absolutely love our new patio and outdoor kitchen. The team made the entire process seamless, and the results exceeded our expectations.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-businesswoman-suit-drinking-takeaway-coffee-street-waiting-someone-near-office-b_1258-117433.jpg?_wi=2", imageAlt: "David K."},
id: "4", name: "David K.", role: "Client", testimonial: "We absolutely love our new patio and outdoor kitchen. The team made the entire process seamless, and the results exceeded our expectations.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-businesswoman-suit-drinking-takeaway-coffee-street-waiting-someone-near-office-b_1258-117433.jpg", imageAlt: "David K."},
{
id: "5", name: "Laura S.", role: "Homeowner", testimonial: "The sod installation was quick and flawless. Our lawn looks fantastic, and the automated communication kept us informed every step of the way.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-middle-age-couple-having-date-outdoors_23-2149016125.jpg?_wi=2", imageAlt: "Laura S."},
id: "5", name: "Laura S.", role: "Homeowner", testimonial: "The sod installation was quick and flawless. Our lawn looks fantastic, and the automated communication kept us informed every step of the way.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-middle-age-couple-having-date-outdoors_23-2149016125.jpg", imageAlt: "Laura S."},
{
id: "6", name: "Robert B.", role: "Client", testimonial: "Fantastic drainage solutions! They solved our long-standing water issue efficiently and professionally. Truly experts in their field.", imageSrc: "http://img.b2bpic.net/free-photo/woman-looking-with-pleasure-marshmallows-stick_259150-58527.jpg?_wi=2", imageAlt: "Robert B."},
id: "6", name: "Robert B.", role: "Client", testimonial: "Fantastic drainage solutions! They solved our long-standing water issue efficiently and professionally. Truly experts in their field.", imageSrc: "http://img.b2bpic.net/free-photo/woman-looking-with-pleasure-marshmallows-stick_259150-58527.jpg", imageAlt: "Robert B."},
]}
textboxLayout="default"
useInvertedBackground={false}
@@ -141,4 +141,3 @@ export default function PortfolioPage() {
</ThemeProvider>
);
}
</code></pre>