Update src/app/page.tsx

This commit is contained in:
2026-05-12 19:05:08 +00:00
parent 16eef939dd
commit 84547c87ac

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterCard from '@/components/sections/footer/FooterCard';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import SplitAbout from '@/components/sections/about/SplitAbout';
@@ -29,21 +29,13 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Water Wise"
/>
@@ -55,37 +47,23 @@ export default function LandingPage() {
description="Premium sprinkler repair, installation, and conversion services for homeowners who value a beautiful, efficient landscape. Save water and money with Utah-specialized irrigation expertise."
buttons={[
{
text: "Get a Quote",
href: "/contact",
},
text: "Get a Quote", href: "/contact"},
{
text: "Call Now",
href: "tel:5551234567",
},
text: "Call Now", href: "tel:5551234567"},
]}
imageSrc="http://img.b2bpic.net/free-photo/long-shot-young-woman-taking-care-plants_23-2148509881.jpg?_wi=1"
imageAlt="A beautiful water-wise home garden in Salt Lake City"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/side-view-woman-holding-flower-pot_23-2148271020.jpg",
alt: "Water-wise garden client 1",
},
src: "http://img.b2bpic.net/free-photo/side-view-woman-holding-flower-pot_23-2148271020.jpg", alt: "Water-wise garden client 1"},
{
src: "http://img.b2bpic.net/free-photo/hands-planting_23-2148128701.jpg",
alt: "Water-wise garden client 2",
},
src: "http://img.b2bpic.net/free-photo/hands-planting_23-2148128701.jpg", alt: "Water-wise garden client 2"},
{
src: "http://img.b2bpic.net/free-photo/grass-sprout-with-ground-small-shovel-work-garden_127675-2667.jpg",
alt: "Water-wise garden client 3",
},
src: "http://img.b2bpic.net/free-photo/grass-sprout-with-ground-small-shovel-work-garden_127675-2667.jpg", alt: "Water-wise garden client 3"},
{
src: "http://img.b2bpic.net/free-photo/smiling-young-woman-holding-digital-tablet-hand-gardening-greenhouse_23-2147948181.jpg",
alt: "Water-wise garden client 4",
},
src: "http://img.b2bpic.net/free-photo/smiling-young-woman-holding-digital-tablet-hand-gardening-greenhouse_23-2147948181.jpg", alt: "Water-wise garden client 4"},
{
src: "http://img.b2bpic.net/free-photo/bucket_23-2148013440.jpg",
alt: "Water-wise garden client 5",
},
src: "http://img.b2bpic.net/free-photo/bucket_23-2148013440.jpg", alt: "Water-wise garden client 5"},
]}
avatarText="Trusted by over 500+ local homeowners"
/>
@@ -98,26 +76,11 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
id: "1",
title: "Sprinkler Repair",
description: "Fast diagnostics for leaks, controller issues, and head replacements.",
tag: "Repair",
imageSrc: "http://img.b2bpic.net/free-photo/sitting-man-using-earphones_23-2148000251.jpg?_wi=1",
},
id: "1", title: "Sprinkler Repair", description: "Fast diagnostics for leaks, controller issues, and head replacements.", tag: "Repair", imageSrc: "http://img.b2bpic.net/free-photo/sitting-man-using-earphones_23-2148000251.jpg?_wi=1"},
{
id: "2",
title: "Drip Irrigation",
description: "High-efficiency systems for flower beds and water-wise landscapes.",
tag: "Conservation",
imageSrc: "http://img.b2bpic.net/free-photo/luxury-outdoor-hotel_1150-12915.jpg?_wi=1",
},
id: "2", title: "Drip Irrigation", description: "High-efficiency systems for flower beds and water-wise landscapes.", tag: "Conservation", imageSrc: "http://img.b2bpic.net/free-photo/luxury-outdoor-hotel_1150-12915.jpg?_wi=1"},
{
id: "3",
title: "Conversion Services",
description: "Convert traditional systems to water-wise Localscapes-aligned designs.",
tag: "Upgrade",
imageSrc: "http://img.b2bpic.net/free-photo/graveyard-background-concept_23-2149585151.jpg?_wi=1",
},
id: "3", title: "Conversion Services", description: "Convert traditional systems to water-wise Localscapes-aligned designs.", tag: "Upgrade", imageSrc: "http://img.b2bpic.net/free-photo/graveyard-background-concept_23-2149585151.jpg?_wi=1"},
]}
title="Comprehensive Irrigation Solutions"
description="We specialize in premium-quality service that protects your investment and conserves Utah's most precious resource."
@@ -132,17 +95,11 @@ export default function LandingPage() {
description="Founded by Jared Weeks, we brought our expertise to Salt Lake in 2022. In 2026, we launched our dedicated Water Wise brand to focus on the future of Utah landscaping."
bulletPoints={[
{
title: "Water-Wise First",
description: "Efficient design and technology to reduce waste.",
},
title: "Water-Wise First", description: "Efficient design and technology to reduce waste."},
{
title: "Honest Work",
description: "Transparent pricing and premium-quality components.",
},
title: "Honest Work", description: "Transparent pricing and premium-quality components."},
{
title: "Local Expertise",
description: "Deep knowledge of the Salt Lake valley environment.",
},
title: "Local Expertise", description: "Deep knowledge of the Salt Lake valley environment."},
]}
imageSrc="http://img.b2bpic.net/free-photo/young-farmer-taking-care-his-business_329181-15942.jpg?_wi=1"
mediaAnimation="slide-up"
@@ -156,60 +113,15 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Sarah J.",
date: "March 2025",
title: "Homeowner",
quote: "The best sprinkler service we've ever hired. Transparent, fast, and actually knowledgeable about saving water.",
tag: "Expertise",
avatarSrc: "http://img.b2bpic.net/free-photo/rural-life-close-up-young-attractive-bearded-hispanic-farmer-blue-t-shirt-working-his-farm-picking-berries-planting-seeds-gardener-looking-plants-garden_176420-19948.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/long-shot-young-woman-taking-care-plants_23-2148509881.jpg?_wi=2",
imageAlt: "happy homeowner in landscape",
},
id: "1", name: "Sarah J.", date: "March 2025", title: "Homeowner", quote: "The best sprinkler service we've ever hired. Transparent, fast, and actually knowledgeable about saving water.", tag: "Expertise", avatarSrc: "http://img.b2bpic.net/free-photo/rural-life-close-up-young-attractive-bearded-hispanic-farmer-blue-t-shirt-working-his-farm-picking-berries-planting-seeds-gardener-looking-plants-garden_176420-19948.jpg", imageSrc: "http://img.b2bpic.net/free-photo/long-shot-young-woman-taking-care-plants_23-2148509881.jpg?_wi=2", imageAlt: "happy homeowner in landscape"},
{
id: "2",
name: "Mike R.",
date: "Feb 2025",
title: "Homeowner",
quote: "Finally found a company that cares about quality as much as I do. Very impressed with the water-wise conversion.",
tag: "Quality",
avatarSrc: "http://img.b2bpic.net/free-photo/women-working-greenhouse-with-flowerpots_1157-30890.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/sitting-man-using-earphones_23-2148000251.jpg?_wi=2",
imageAlt: "happy homeowner in landscape",
},
id: "2", name: "Mike R.", date: "Feb 2025", title: "Homeowner", quote: "Finally found a company that cares about quality as much as I do. Very impressed with the water-wise conversion.", tag: "Quality", avatarSrc: "http://img.b2bpic.net/free-photo/women-working-greenhouse-with-flowerpots_1157-30890.jpg", imageSrc: "http://img.b2bpic.net/free-photo/sitting-man-using-earphones_23-2148000251.jpg?_wi=2", imageAlt: "happy homeowner in landscape"},
{
id: "3",
name: "Elena D.",
date: "Jan 2025",
title: "Property Manager",
quote: "Responsive and professional. Saved us money on water bills almost immediately.",
tag: "Value",
avatarSrc: "http://img.b2bpic.net/free-photo/happy-senior-couple-with-water-hose_23-2148256681.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/luxury-outdoor-hotel_1150-12915.jpg?_wi=2",
imageAlt: "happy homeowner in landscape",
},
id: "3", name: "Elena D.", date: "Jan 2025", title: "Property Manager", quote: "Responsive and professional. Saved us money on water bills almost immediately.", tag: "Value", avatarSrc: "http://img.b2bpic.net/free-photo/happy-senior-couple-with-water-hose_23-2148256681.jpg", imageSrc: "http://img.b2bpic.net/free-photo/luxury-outdoor-hotel_1150-12915.jpg?_wi=2", imageAlt: "happy homeowner in landscape"},
{
id: "4",
name: "David K.",
date: "Dec 2024",
title: "Homeowner",
quote: "Great communication. Jared showed me exactly how to adjust my controller to stop wasting water.",
tag: "Service",
avatarSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-farmer-taking-care-his-business_329181-15942.jpg?_wi=2",
imageAlt: "happy homeowner in landscape",
},
id: "4", name: "David K.", date: "Dec 2024", title: "Homeowner", quote: "Great communication. Jared showed me exactly how to adjust my controller to stop wasting water.", tag: "Service", avatarSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-farmer-taking-care-his-business_329181-15942.jpg?_wi=2", imageAlt: "happy homeowner in landscape"},
{
id: "5",
name: "Jessica M.",
date: "Nov 2024",
title: "Homeowner",
quote: "Professional, on time, and the quality of parts they use is top-notch. Highly recommend.",
tag: "Quality",
avatarSrc: "http://img.b2bpic.net/free-photo/woman-standing-front-painted-ladies-san-francisco-usa_53876-49291.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/graveyard-background-concept_23-2149585151.jpg?_wi=2",
imageAlt: "happy homeowner in landscape",
},
id: "5", name: "Jessica M.", date: "Nov 2024", title: "Homeowner", quote: "Professional, on time, and the quality of parts they use is top-notch. Highly recommend.", tag: "Quality", avatarSrc: "http://img.b2bpic.net/free-photo/woman-standing-front-painted-ladies-san-francisco-usa_53876-49291.jpg", imageSrc: "http://img.b2bpic.net/free-photo/graveyard-background-concept_23-2149585151.jpg?_wi=2", imageAlt: "happy homeowner in landscape"},
]}
title="Trusted by Salt Lake Homeowners"
description="Hear why our neighbors choose us for their irrigation needs."
@@ -221,20 +133,11 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "q1",
title: "What areas do you serve?",
content: "We serve Salt Lake City and the East side, including Sandy, Cottonwood Heights, Draper, Holladay, Millcreek, and Murray.",
},
id: "q1", title: "What areas do you serve?", content: "We serve Salt Lake City and the East side, including Sandy, Cottonwood Heights, Draper, Holladay, Millcreek, and Murray."},
{
id: "q2",
title: "Do you offer winterization?",
content: "Yes, we provide full sprinkler winterization/blowouts to protect your system from Utah's freezing temperatures.",
},
id: "q2", title: "Do you offer winterization?", content: "Yes, we provide full sprinkler winterization/blowouts to protect your system from Utah's freezing temperatures."},
{
id: "q3",
title: "Can you convert my lawn to drip?",
content: "Absolutely. We specialize in water-wise conversions and retrofitting existing systems for higher efficiency.",
},
id: "q3", title: "Can you convert my lawn to drip?", content: "Absolutely. We specialize in water-wise conversions and retrofitting existing systems for higher efficiency."},
]}
sideTitle="Common Questions"
sideDescription="Everything you need to know about our services and water-saving expertise."
@@ -243,8 +146,23 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterBaseCard
logoText="Water Wise"
columns={[
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "Contact", href: "/contact" },
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Get a Quote", href: "/contact" },
]
}
]}
copyrightText="© 2026 Water Wise Sprinkler & Irrigation. All rights reserved."
/>
</div>