Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a1c7a6658 | |||
| 1156858fe5 | |||
| 2ae6a7f767 | |||
| dd7d91496b | |||
| c38d8f1da1 | |||
| 0aeb9bafc5 |
1369
src/app/layout.tsx
1369
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -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 PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
@@ -77,7 +77,7 @@ export default function LandingPage() {
|
||||
"Sub-second data updates", "Multi-asset class tracking", "Portfolio performance monitoring", "Custom alert systems"
|
||||
],
|
||||
buttons: [
|
||||
{ text: "Explore Platform", href: "pricing" }
|
||||
{ text: "Explore Platform", href: "#pricing" }
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -98,15 +98,15 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "3", value: "45%", title: "Average ROI", description: "5-year performance on portfolio exits", icon: BarChart3
|
||||
},
|
||||
{
|
||||
id: "1", value: "3.2B", title: "Assets Under Management", description: "Trusted by institutional investors globally", icon: TrendingUp
|
||||
},
|
||||
{
|
||||
id: "2", value: "847", title: "Companies Funded", description: "Portfolio companies across tech sectors", icon: Rocket
|
||||
},
|
||||
{
|
||||
id: "3", value: "45%", title: "Average ROI", description: "5-year performance on portfolio exits", icon: BarChart3
|
||||
},
|
||||
{
|
||||
id: "4", value: "98.7%", title: "Client Satisfaction", description: "Highest rated investment platform", icon: Star
|
||||
}
|
||||
@@ -131,7 +131,7 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardFive
|
||||
<PricingCardTwo
|
||||
title="Investment Plans Built to Scale"
|
||||
description="Choose the tier that matches your investment ambitions and portfolio size"
|
||||
textboxLayout="default"
|
||||
@@ -139,25 +139,34 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "starter", tag: "Starter Fund", tagIcon: Zap,
|
||||
price: "$10K", period: "/month", description: "Perfect for emerging investors", featuresTitle: "Features", features: [
|
||||
id: "starter", badge: "Starter Fund", badgeIcon: Zap,
|
||||
price: "$10K/month", subtitle: "Perfect for emerging investors", 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"
|
||||
],
|
||||
button: { text: "Start Now", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "professional", tag: "Professional Growth", tagIcon: Sparkles,
|
||||
price: "$50K", period: "/month", description: "Ideal for institutional investors", featuresTitle: "Features", features: [
|
||||
id: "professional", badge: "Professional Growth", badgeIcon: Sparkles,
|
||||
price: "$50K/month", subtitle: "Ideal for institutional investors", 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"
|
||||
],
|
||||
button: { text: "Get Started", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
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"
|
||||
id: "enterprise", badge: "Enterprise Access", badgeIcon: Crown,
|
||||
price: "Custom", subtitle: "For mega-funds and enterprises", buttons: [
|
||||
{ text: "Contact Sales", href: "#contact" },
|
||||
{ text: "Enterprise Brief", href: "#" }
|
||||
],
|
||||
button: { text: "Contact Sales", href: "contact" }
|
||||
features: [
|
||||
"Unlimited portfolio access", "Custom AI model training", "Full market ecosystem integration", "24/7 premium support", "Dedicated engineering team", "White-label solutions available"
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -257,4 +266,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user