From c04d6a49ac5d6f1887c75df2810c7950d14f56ba Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 10:56:30 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1d1369e..ae03355 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -139,34 +139,25 @@ export default function LandingPage() { animationType="slide-up" plans={[ { - id: "starter", badge: "Starter Fund", badgeIcon: Zap, - price: "$10K", period: "/month", title: "Perfect for emerging investors", features: [ + id: "starter", tag: "Starter Fund", tagIcon: Zap, + price: "$10K", period: "/month", description: "Perfect for emerging investors", featuresTitle: "Features", features: [ "Up to $5M in portfolio access", "AI-powered recommendations", "Basic analytics dashboard", "Email support", "Monthly market reports" ], - buttons: [ - { text: "Start Now", href: "contact" }, - { text: "Learn More", href: "#" } - ] + button: { text: "Start Now", href: "contact" } }, { - id: "professional", badge: "Professional Growth", badgeIcon: Sparkles, - price: "$50K", period: "/month", title: "Ideal for institutional investors", features: [ + id: "professional", tag: "Professional Growth", tagIcon: Sparkles, + price: "$50K", period: "/month", description: "Ideal for institutional investors", featuresTitle: "Features", features: [ "Up to $100M in portfolio access", "Advanced AI analytics and modeling", "Real-time market intelligence", "Priority support", "Dedicated account manager", "Custom reporting suite" ], - buttons: [ - { text: "Get Started", href: "contact" }, - { text: "Schedule Demo", href: "#" } - ] + button: { text: "Get Started", href: "contact" } }, { - id: "enterprise", badge: "Enterprise Access", badgeIcon: Crown, - price: "Custom", period: "", title: "For mega-funds and enterprises", features: [ + id: "enterprise", tag: "Enterprise Access", tagIcon: Crown, + price: "Custom", period: "", description: "For mega-funds and enterprises", featuresTitle: "Features", features: [ "Unlimited portfolio access", "Custom AI model training", "Full market ecosystem integration", "24/7 premium support", "Dedicated engineering team", "White-label solutions available" ], - buttons: [ - { text: "Contact Sales", href: "contact" }, - { text: "Enterprise Brief", href: "#" } - ] + button: { text: "Contact Sales", href: "contact" } } ]} /> -- 2.49.1