diff --git a/src/app/page.tsx b/src/app/page.tsx index e34ef7d..ee31a79 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Zap } from "lucide-react"; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; @@ -29,18 +30,9 @@ export default function LandingPage() {
@@ -71,14 +55,8 @@ export default function LandingPage() { title="Why Clear View?" description="We specialize in residential window clarity. Our process uses purified water technology to ensure your home looks its absolute best." metrics={[ - { - value: "10+", - title: "Years Experience", - }, - { - value: "500+", - title: "Homes Cleaned", - }, + { value: "10+", title: "Years Experience" }, + { value: "500+", title: "Homes Cleaned" }, ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOgLPz2rB8iiGpcMLHkwwemAGS/detail-of-high-end-squeegee-equipment-on-1774550681087-b76b77ff.png" mediaAnimation="slide-up" @@ -92,19 +70,13 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Standard Residential", - description: "Professional exterior window cleaning.", - buttonIcon: "Zap", + title: "Standard Residential", description: "Professional exterior window cleaning.", buttonIcon: Zap, }, { - title: "Screen Cleaning", - description: "Removal of dust and debris from screens.", - buttonIcon: "Zap", + title: "Screen Cleaning", description: "Removal of dust and debris from screens.", buttonIcon: Zap, }, { - title: "Track Cleaning", - description: "Deep cleaning for sliding tracks.", - buttonIcon: "Zap", + title: "Track Cleaning", description: "Deep cleaning for sliding tracks.", buttonIcon: Zap, }, ]} title="Our Professional Services" @@ -119,31 +91,12 @@ export default function LandingPage() { useInvertedBackground={false} plans={[ { - id: "basic", - title: "Starter", - price: "$149", - period: "per visit", - features: [ - "Exterior Windows", - "Professional Wipe", - ], - button: { - text: "Book Basic", - }, + id: "basic", title: "Starter", price: "$149", period: "per visit", features: ["Exterior Windows", "Professional Wipe"], + button: { text: "Book Basic" }, }, { - id: "pro", - title: "Premium", - price: "$249", - period: "per visit", - features: [ - "Full Window Wash", - "Screen Cleaning", - "Track Detail", - ], - button: { - text: "Book Premium", - }, + id: "pro", title: "Premium", price: "$249", period: "per visit", features: ["Full Window Wash", "Screen Cleaning", "Track Detail"], + button: { text: "Book Premium" }, }, ]} title="Transparent Pricing" @@ -157,34 +110,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Mark R.", - role: "Glendale Resident", - testimonial: "The best window cleaning I've had. Crystal clear and professional.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOgLPz2rB8iiGpcMLHkwwemAGS/abstract-background-showing-blurred-mode-1774550684266-722d52c9.jpg?_wi=1", - }, - { - id: "2", - name: "Sarah P.", - role: "Glendale Resident", - testimonial: "So fast and efficient. Highly recommend.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOgLPz2rB8iiGpcMLHkwwemAGS/abstract-background-showing-blurred-mode-1774550684266-722d52c9.jpg?_wi=2", - }, - { - id: "3", - name: "James L.", - role: "Glendale Resident", - testimonial: "Very professional and left everything spotless.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOgLPz2rB8iiGpcMLHkwwemAGS/abstract-background-showing-blurred-mode-1774550684266-722d52c9.jpg?_wi=3", - }, - { - id: "4", - name: "Emily H.", - role: "Glendale Resident", - testimonial: "Exceeded my expectations perfectly.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOgLPz2rB8iiGpcMLHkwwemAGS/abstract-background-showing-blurred-mode-1774550684266-722d52c9.jpg?_wi=4", - }, + { id: "1", name: "Mark R.", role: "Glendale Resident", testimonial: "The best window cleaning I've had. Crystal clear and professional.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOgLPz2rB8iiGpcMLHkwwemAGS/abstract-background-showing-blurred-mode-1774550684266-722d52c9.jpg" }, + { id: "2", name: "Sarah P.", role: "Glendale Resident", testimonial: "So fast and efficient. Highly recommend.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOgLPz2rB8iiGpcMLHkwwemAGS/abstract-background-showing-blurred-mode-1774550684266-722d52c9.jpg" }, + { id: "3", name: "James L.", role: "Glendale Resident", testimonial: "Very professional and left everything spotless.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOgLPz2rB8iiGpcMLHkwwemAGS/abstract-background-showing-blurred-mode-1774550684266-722d52c9.jpg" }, + { id: "4", name: "Emily H.", role: "Glendale Resident", testimonial: "Exceeded my expectations perfectly.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOgLPz2rB8iiGpcMLHkwwemAGS/abstract-background-showing-blurred-mode-1774550684266-722d52c9.jpg" }, ]} title="Loved by Glendale Heights" description="See why our neighbors trust us with their views." @@ -194,9 +123,7 @@ export default function LandingPage() {