Compare commits
5 Commits
version_7
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| 5622e940ac | |||
| 9a0e5bb53a | |||
| 5a8527d95b | |||
| c38d8f1da1 | |||
| 0aeb9bafc5 |
@@ -148,7 +148,7 @@ export default function RootLayout({
|
||||
|
||||
const backgroundImage = computedStyle.backgroundImage;
|
||||
if (backgroundImage && backgroundImage !== 'none') {
|
||||
const urlMatch = backgroundImage.match(/url(['"]?([^'")]+)['"]?)/);
|
||||
const urlMatch = backgroundImage.match(/url(['\"]?([^'\")]+)['\"]?)/);
|
||||
if (urlMatch && urlMatch[1] && !urlMatch[1].includes('gradient')) {
|
||||
const area = element.offsetWidth * element.offsetHeight;
|
||||
const hasReasonableSize = area > 1000;
|
||||
@@ -317,7 +317,7 @@ export default function RootLayout({
|
||||
const computedStyle = window.getComputedStyle(element);
|
||||
const backgroundImage = computedStyle.backgroundImage;
|
||||
if (backgroundImage && backgroundImage !== 'none') {
|
||||
const urlMatch = backgroundImage.match(/url(['"]?([^'")]+)['"]?)/);
|
||||
const urlMatch = backgroundImage.match(/url(['\"]?([^'\")]+)['\"]?)/);
|
||||
if (urlMatch) {
|
||||
const originalBgSrc = extractOriginalUrl(urlMatch[1]);
|
||||
if (tagName !== 'img') {
|
||||
@@ -1270,7 +1270,7 @@ export default function RootLayout({
|
||||
|
||||
let cleanOldValue = oldValue;
|
||||
if (oldValue.includes('url(')) {
|
||||
const urlMatch = oldValue.match(/url(['"]?([^'")]+)['"]?)/);
|
||||
const urlMatch = oldValue.match(/url(['\"]?([^'\")]+)['\"]?)/);
|
||||
if (urlMatch) {
|
||||
cleanOldValue = urlMatch[1];
|
||||
}
|
||||
@@ -2758,4 +2758,4 @@ export default function RootLayout({
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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';
|
||||
@@ -66,7 +66,7 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: "ai-insights", label: "AI Insights", title: "Machine Learning-Powered Analysis", items: [
|
||||
"Pattern recognition across 10,000+ startups", "Predictive market trend analysis", "Automated due diligence reports", "Sentiment analysis from industry sources"
|
||||
"60% faster due diligence with automated reports", "92% accuracy in predictive market trend analysis", "Identify top 1% of opportunities from 10,000+ startups", "Aggregate sentiment from 5M+ industry sources daily"
|
||||
],
|
||||
buttons: [
|
||||
{ text: "Learn More", href: "#" }
|
||||
@@ -74,7 +74,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "realtime-data", label: "Real-Time", title: "Live Market Intelligence", items: [
|
||||
"Sub-second data updates", "Multi-asset class tracking", "Portfolio performance monitoring", "Custom alert systems"
|
||||
"Under 250ms data updates for real-time advantage", "Track 50+ asset classes in a single dashboard", "Reduce missed opportunities by 40% with custom alerts", "24/7 real-time portfolio performance monitoring"
|
||||
],
|
||||
buttons: [
|
||||
{ text: "Explore Platform", href: "pricing" }
|
||||
@@ -82,7 +82,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "security", label: "Security", title: "Military-Grade Protection", items: [
|
||||
"Enterprise encryption standards", "Multi-factor authentication", "Compliance with FINRA and SEC", "Annual third-party audits"
|
||||
"Secure with AES-256 enterprise encryption standards", "99.9% account protection with multi-factor authentication", "100% compliant with FINRA and SEC regulations", "Pass annual third-party security audits with zero breaches"
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -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