Update src/app/page.tsx

This commit is contained in:
2026-05-17 17:17:30 +00:00
parent 37aabae6b9
commit e97e62bdc6

View File

@@ -33,10 +33,10 @@ export default function LandscapingPage() {
brandName="Ugarte Landscapes 🪴"
navItems={[
{ name: "Services", id: "/services" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "About", id: "#about" },
{ name: "Team", id: "#team" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Contact", id: "#contact" },
]}
button={{ text: "Request Repair", href: "#contact" }}
/>
@@ -49,22 +49,7 @@ export default function LandscapingPage() {
buttons={[{ text: "Our Services", href: "/services" }]}
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/view-water-tank-storage_23-2151748216.jpg"
logoClassName="scale-75 origin-top"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
cardTag="Our Clients"
cardTitle="See why our community chooses Ugarte Landscapes."
buttons={[{ text: "Contact Today", href: "#contact" }]}
cardAnimation="slide-up"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Sarah B.", imageSrc: "http://img.b2bpic.net/free-photo/teen-age-youth-style-self-expression-concept-portrait-positive-happy-teenage-girl-with-bob-pinkish-hairstyle-facial-piercing-relaxing-indoors_343059-3781.jpg" },
{ id: "2", name: "Mark J.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-posing_23-2148563421.jpg" },
{ id: "3", name: "Elena P.", imageSrc: "http://img.b2bpic.net/free-photo/woman-smiling_1187-3196.jpg" },
]}
logoClassName="scale-[0.6] md:scale-75 origin-top"
/>
</div>
@@ -83,6 +68,21 @@ export default function LandscapingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
cardTag="Our Clients"
cardTitle="See why our community chooses Ugarte Landscapes."
buttons={[{ text: "Contact Today", href: "#contact" }]}
cardAnimation="slide-up"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Sarah B.", imageSrc: "http://img.b2bpic.net/free-photo/teen-age-youth-style-self-expression-concept-portrait-positive-happy-teenage-girl-with-bob-pinkish-hairstyle-facial-piercing-relaxing-indoors_343059-3781.jpg" },
{ id: "2", name: "Mark J.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-posing_23-2148563421.jpg" },
{ id: "3", name: "Elena P.", imageSrc: "http://img.b2bpic.net/free-photo/woman-smiling_1187-3196.jpg" },
]}
/>
</div>
<div id="why-us" data-section="why-us">
<TeamCardSix
title="The Ugarte Advantage"
@@ -164,4 +164,4 @@ export default function LandscapingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}