diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 81a304f..75aef92 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -6,8 +6,9 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; +import { BarChart, Users, Zap } from 'lucide-react'; -export default function LandingPage() { +export default function PricingPage() { return ( @@ -53,38 +46,20 @@ export default function LandingPage() { useInvertedBackground={false} plans={[ { - id: "p1", - badge: "Basic", - price: "$99", - subtitle: "For small business", - buttons: [ + id: "p1", badge: "Basic", price: "$99", subtitle: "For small business", buttons: [ { - text: "Purchase", - href: "/contact", - }, + text: "Purchase", href: "/contact"}, ], features: [ - "1 Chatbot", - "Web Setup", - "Basic Marketing", - ], + "1 Chatbot", "Web Setup", "Basic Marketing"], }, { - id: "p2", - badge: "Popular", - price: "$299", - subtitle: "For scale", - buttons: [ + id: "p2", badge: "Popular", price: "$299", subtitle: "For scale", buttons: [ { - text: "Purchase", - href: "/contact", - }, + text: "Purchase", href: "/contact"}, ], features: [ - "5 Chatbots", - "Premium Web", - "Full Marketing", - ], + "5 Chatbots", "Premium Web", "Full Marketing"], }, ]} title="Tiered Plans" @@ -99,19 +74,13 @@ export default function LandingPage() { useInvertedBackground={false} metrics={[ { - id: "m1", - title: "Projects", - value: "500+", + id: "m1", title: "Projects", value: "500+", icon: BarChart }, { - id: "m2", - title: "Clients", - value: "200+", + id: "m2", title: "Clients", value: "200+", icon: Users }, { - id: "m3", - title: "Uptime", - value: "99.9%", + id: "m3", title: "Uptime", value: "99.9%", icon: Zap }, ]} title="Why Choose Us" @@ -123,20 +92,13 @@ export default function LandingPage() {