diff --git a/src/app/page.tsx b/src/app/page.tsx index 0e3e383..296eca9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,7 +5,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; -import FeatureCardNine from '@/components/sections/feature/FeatureCardNine/FeatureCardNine'; +import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; @@ -132,22 +132,23 @@ export default function LandingPage() { textboxLayout="default" animationType="slide-up" useInvertedBackground={false} + showStepNumbers={true} features={[ { - id: "1", title: "Schedule & Quote", description: "Book online or call. We provide instant pricing based on volume—no surprises, no hidden fees.", icon: Clock, - reverse: false + id: "1", title: "Schedule & Quote", description: "Book online or call. We provide instant pricing based on volume—no surprises, no hidden fees.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg" }, + phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg" } }, { - id: "2", title: "Professional Pickup", description: "Our trained crew arrives on time, handles your items safely, and loads everything quickly.", icon: Truck, - reverse: true + id: "2", title: "Professional Pickup", description: "Our trained crew arrives on time, handles your items safely, and loads everything quickly.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg" }, + phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg" } }, { - id: "3", title: "Responsible Disposal", description: "We recycle, donate, or dispose responsibly. Your junk is handled with care for the environment.", icon: Recycle, - reverse: false + id: "3", title: "Responsible Disposal", description: "We recycle, donate, or dispose responsibly. Your junk is handled with care for the environment.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg" }, + phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg" } }, { - id: "4", title: "Clean Finish", description: "We clean up after ourselves and leave your space spotless. Job done right, first time.", icon: CheckCircle, - reverse: true + id: "4", title: "Clean Finish", description: "We clean up after ourselves and leave your space spotless. Job done right, first time.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg" }, + phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg" } } ]} /> @@ -163,30 +164,21 @@ export default function LandingPage() { useInvertedBackground={false} plans={[ { - id: "1", price: "$150–$300", name: "Small Load", buttons: [ - { text: "Get Quote", href: "contact" }, - { text: "Learn More", href: "#" } - ], - features: [ + id: "1", tag: "Small Load", price: "$150–$300", period: "", description: "Single room or storage area", button: { text: "Get Quote", href: "contact" }, + featuresTitle: "Includes", features: [ "Single room or storage area", "Up to 1/4 truckload", "Same-day scheduling available", "Professional hauling & disposal" ] }, { - id: "2", badge: "Most Popular", badgeIcon: Sparkles, - price: "$300–$600", name: "Medium Load", buttons: [ - { text: "Get Quote", href: "contact" }, - { text: "Learn More", href: "#" } - ], - features: [ + id: "2", tag: "Medium Load", tagIcon: Sparkles, + price: "$300–$600", period: "", description: "Multiple rooms or garage", button: { text: "Get Quote", href: "contact" }, + featuresTitle: "Includes", features: [ "Multiple rooms or garage", "Up to 1/2 truckload", "Fastest turnaround time", "Eco-friendly recycling & donation" ] }, { - id: "3", price: "$600–$1200", name: "Large Load", buttons: [ - { text: "Get Quote", href: "contact" }, - { text: "Learn More", href: "#" } - ], - features: [ + id: "3", tag: "Large Load", price: "$600–$1200", period: "", description: "Entire home or commercial space", button: { text: "Get Quote", href: "contact" }, + featuresTitle: "Includes", features: [ "Entire home or commercial space", "Full truckload or multiple trips", "Priority scheduling", "Dedicated crew assignment" ] } @@ -204,16 +196,16 @@ export default function LandingPage() { useInvertedBackground={false} metrics={[ { - id: "1", title: "2,000+ Jobs Completed", description: "From small rooms to entire estates", value: "100% On-Time", category: "Reliability", icon: CheckCircle + id: "1", title: "2,000+ Jobs Completed", description: "From small rooms to entire estates", value: "100% On-Time" }, { - id: "2", title: "98% Same-Day Service", description: "Fast scheduling in most areas", value: "Next Day", category: "Speed", icon: Truck + id: "2", title: "98% Same-Day Service", description: "Fast scheduling in most areas", value: "Next Day" }, { - id: "3", title: "65% Eco-Friendly Diversion", description: "Recycled or donated instead of landfill", value: "Responsible", category: "Sustainability", icon: Leaf + id: "3", title: "65% Eco-Friendly Diversion", description: "Recycled or donated instead of landfill", value: "Responsible" }, { - id: "4", title: "4.9/5 Customer Rating", description: "Consistently excellent service", value: "Trusted", category: "Quality", icon: Users + id: "4", title: "4.9/5 Customer Rating", description: "Consistently excellent service", value: "Trusted" } ]} /> @@ -282,19 +274,16 @@ export default function LandingPage() {
@@ -315,31 +304,33 @@ export default function LandingPage() {