3 Commits

Author SHA1 Message Date
939d746549 Update src/app/services/page.tsx 2026-05-17 17:17:31 +00:00
e97e62bdc6 Update src/app/page.tsx 2026-05-17 17:17:30 +00:00
37aabae6b9 Merge version_11 into main
Merge version_11 into main
2026-05-17 17:14:30 +00:00
2 changed files with 26 additions and 26 deletions

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>
);
}
}

View File

@@ -27,10 +27,10 @@ export default function ServicesPage() {
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" }}
/>
@@ -82,4 +82,4 @@ export default function ServicesPage() {
</ReactLenis>
</ThemeProvider>
);
}
}