diff --git a/src/app/page.tsx b/src/app/page.tsx index 7cc93f8..dae74c2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,6 +6,7 @@ import HeroCentered from "@/components/sections/hero/HeroCentered"; import FeatureBento from "@/components/sections/feature/FeatureBento"; import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import PricingCardOne from "@/components/sections/pricing/PricingCardOne"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; @@ -175,22 +176,19 @@ export default function LandingPage() { animationType="slide-up" plans={[ { - id: "starter", name: "Starter", price: "$99", period: "/month", description: "Perfect for getting started", features: [ + id: "starter", title: "Starter", price: "$99", period: "per month", features: [ "Up to 1,000 users", "Core analytics", "Email support", "API access"], button: { text: "Get Started", href: "#contact" }, - highlighted: false, }, { - id: "professional", name: "Professional", price: "$299", period: "/month", description: "For growing teams", features: [ + id: "professional", title: "Professional", price: "$299", period: "per month", features: [ "Unlimited users", "Advanced analytics", "Priority support", "Custom integrations", "Team collaboration"], button: { text: "Upgrade Now", href: "#contact" }, - highlighted: true, }, { - id: "enterprise", name: "Enterprise", price: "Custom", period: "", description: "For enterprises", features: [ + id: "enterprise", title: "Enterprise", price: "Custom", period: "contact us", features: [ "Unlimited everything", "Dedicated account manager", "24/7 premium support", "Custom development", "White-label solution"], button: { text: "Contact Sales", href: "#contact" }, - highlighted: false, }, ]} />