diff --git a/src/app/page.tsx b/src/app/page.tsx index 1ab5a97..5f7ecd6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import FaqBase from '@/components/sections/faq/FaqBase'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { BarChart3, CheckCircle, CreditCard, DollarSign, HelpCircle, Info, Leaf, Shield, Star, Sun, TrendingUp, Zap } from 'lucide-react'; +import { BarChart3, CheckCircle, CreditCard, DollarSign, HelpCircle, Info, Leaf, Shield, Star, Sun, TrendingUp, Zap, Home } from 'lucide-react'; export default function LandingPage() { return ( @@ -150,9 +150,9 @@ export default function LandingPage() { tagIcon={CreditCard} tagAnimation="slide-up" plans={[ - { id: "1", badge: "Solar Lease", badgeIcon: undefined, price: "$0 Down", subtitle: "Best for minimal upfront cost", buttons: [{ text: "Choose Plan", href: "#contact" }, { text: "Learn More" }], features: ["No upfront costs", "Predictable monthly payment", "System maintenance included", "Performance guarantee", "Easy to transfer if you move"] }, - { id: "2", badge: "Solar Loan", badgeIcon: undefined, price: "$8,999+", subtitle: "Own your system with financing", buttons: [{ text: "Choose Plan", href: "#contact" }, { text: "Learn More" }], features: ["Build equity monthly", "Flexible loan terms", "Federal tax credit eligible", "Maximum energy savings", "System ownership transfer value"] }, - { id: "3", badge: "Cash Purchase", badgeIcon: undefined, price: "From $18,999", subtitle: "Premium investment in energy independence", buttons: [{ text: "Choose Plan", href: "#contact" }, { text: "Learn More" }], features: ["Maximum savings & ROI", "Full system ownership", "Bonus financing rebates", "Transfer property value", "Premium warranty package"] } + { id: "1", badge: "Solar Lease", badgeIcon: Home, price: "$0 Down", subtitle: "Best for minimal upfront cost", buttons: [{ text: "Choose Plan", href: "#contact" }, { text: "Learn More" }], features: ["No upfront costs", "Predictable monthly payment", "System maintenance included", "Performance guarantee", "Easy to transfer if you move"] }, + { id: "2", badge: "Solar Loan", badgeIcon: TrendingUp, price: "$8,999+", subtitle: "Own your system with financing", buttons: [{ text: "Choose Plan", href: "#contact" }, { text: "Learn More" }], features: ["Build equity monthly", "Flexible loan terms", "Federal tax credit eligible", "Maximum energy savings", "System ownership transfer value"] }, + { id: "3", badge: "Cash Purchase", badgeIcon: Zap, price: "From $18,999", subtitle: "Premium investment in energy independence", buttons: [{ text: "Choose Plan", href: "#contact" }, { text: "Learn More" }], features: ["Maximum savings & ROI", "Full system ownership", "Bonus financing rebates", "Transfer property value", "Premium warranty package"] } ]} animationType="slide-up" textboxLayout="default"