Merge version_7 into main #28

Merged
bender merged 1 commits from version_7 into main 2026-02-20 10:54:46 +00:00

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -6,7 +6,7 @@ import HeroSignup from '@/components/sections/hero/HeroSignup';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSimple from '@/components/sections/footer/FooterSimple';
@@ -131,7 +131,7 @@ export default function LandingPage() {
</div>
<div id="pricing" data-section="pricing">
<PricingCardTwo
<PricingCardFive
title="Investment Plans Built to Scale"
description="Choose the tier that matches your investment ambitions and portfolio size"
textboxLayout="default"
@@ -140,32 +140,32 @@ export default function LandingPage() {
plans={[
{
id: "starter", badge: "Starter Fund", badgeIcon: Zap,
price: "$10K/month", subtitle: "Perfect for emerging investors", buttons: [
price: "$10K", period: "/month", title: "Perfect for emerging investors", 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: "#" }
],
features: [
"Up to $5M in portfolio access", "AI-powered recommendations", "Basic analytics dashboard", "Email support", "Monthly market reports"
]
},
{
id: "professional", badge: "Professional Growth", badgeIcon: Sparkles,
price: "$50K/month", subtitle: "Ideal for institutional investors", buttons: [
price: "$50K", period: "/month", title: "Ideal for institutional investors", 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: "#" }
],
features: [
"Up to $100M in portfolio access", "Advanced AI analytics and modeling", "Real-time market intelligence", "Priority support", "Dedicated account manager", "Custom reporting suite"
]
},
{
id: "enterprise", badge: "Enterprise Access", badgeIcon: Crown,
price: "Custom", subtitle: "For mega-funds and enterprises", buttons: [
price: "Custom", period: "", title: "For mega-funds and enterprises", 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: "#" }
],
features: [
"Unlimited portfolio access", "Custom AI model training", "Full market ecosystem integration", "24/7 premium support", "Dedicated engineering team", "White-label solutions available"
]
}
]}