diff --git a/src/app/page.tsx b/src/app/page.tsx
index 9d27178..585d98d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
-import { Zap, Shield, Cloud } from "lucide-react";
+import { Zap, Shield, Cloud, BarChart3 } from "lucide-react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
@@ -32,14 +32,11 @@ export default function LandingPage() {
@@ -47,51 +44,44 @@ export default function LandingPage() {
+
+
+
+
@@ -101,18 +91,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
features={[
- {
- title: "Advanced Analytics", description: "Real-time market insights.", imageSrc: "http://img.b2bpic.net/free-vector/fintech-business-elements_24908-56734.jpg", buttonIcon: Zap,
- },
- {
- title: "Robust Security", description: "Enterprise-grade data encryption.", imageSrc: "http://img.b2bpic.net/free-photo/cybersecurity-data-protection-concept_23-2151998485.jpg", buttonIcon: Shield,
- },
- {
- title: "Ultra-Fast Execution", description: "Low latency infrastructure.", imageSrc: "http://img.b2bpic.net/free-vector/bright-blue-thunder_25030-68286.jpg", buttonIcon: Zap,
- },
- {
- title: "Cloud-Native", description: "Global availability, 24/7.", imageSrc: "http://img.b2bpic.net/free-photo/smartwatch-with-people-icons-around-world_1134-391.jpg", buttonIcon: Cloud,
- },
+ { title: "Advanced Analytics", description: "Real-time market insights.", imageSrc: "http://img.b2bpic.net/free-vector/fintech-business-elements_24908-56734.jpg", buttonIcon: Zap },
+ { title: "Robust Security", description: "Enterprise-grade data encryption.", imageSrc: "http://img.b2bpic.net/free-photo/cybersecurity-data-protection-concept_23-2151998485.jpg", buttonIcon: Shield },
+ { title: "Ultra-Fast Execution", description: "Low latency infrastructure.", imageSrc: "http://img.b2bpic.net/free-vector/bright-blue-thunder_25030-68286.jpg", buttonIcon: Zap },
+ { title: "Cloud-Native", description: "Global availability, 24/7.", imageSrc: "http://img.b2bpic.net/free-photo/smartwatch-with-people-icons-around-world_1134-391.jpg", buttonIcon: Cloud },
]}
title="Unrivaled Algorithmic Performance"
description="Engineered for high-frequency trading with zero-latency execution."
@@ -126,18 +108,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
- {
- id: "p1", name: "Live Market Widget", price: "Included", imageSrc: "http://img.b2bpic.net/free-vector/gradient-ui-ux-elements_23-2149057420.jpg"},
- {
- id: "p2", name: "Strategy Configurator", price: "Pro", imageSrc: "http://img.b2bpic.net/free-photo/empty-modern-office-used-as-financial-insurance-agency-headquarters_482257-106441.jpg"},
- {
- id: "p3", name: "Portfolio Tracker", price: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/pc-monitor-displaying-financial-reports_482257-76219.jpg"},
- {
- id: "p4", name: "Trade Monitor", price: "Advanced", imageSrc: "http://img.b2bpic.net/free-photo/note-book-laptop-glasses-mouse-vintage-compass-coffee-cup-pen-graph-paper-document-office-desk-table_1423-161.jpg"},
- {
- id: "p5", name: "Risk Analytics", price: "Pro", imageSrc: "http://img.b2bpic.net/free-photo/data-analysis-marketing-business-report-concept_53876-124759.jpg"},
- {
- id: "p6", name: "Backtesting Suite", price: "Enterprise", imageSrc: "http://img.b2bpic.net/free-photo/analysis-innovation-opportunities-strengths-strategic_53876-14003.jpg"},
+ { id: "p1", name: "Live Market Widget", price: "Included", imageSrc: "http://img.b2bpic.net/free-vector/gradient-ui-ux-elements_23-2149057420.jpg" },
+ { id: "p2", name: "Strategy Configurator", price: "Pro", imageSrc: "http://img.b2bpic.net/free-photo/empty-modern-office-used-as-financial-insurance-agency-headquarters_482257-106441.jpg" },
+ { id: "p3", name: "Portfolio Tracker", price: "Standard", imageSrc: "http://img.b2bpic.net/free-photo/pc-monitor-displaying-financial-reports_482257-76219.jpg" },
]}
title="Algorithmic Toolset"
description="Comprehensive suite of trading tools."
@@ -150,83 +123,28 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
plans={[
- {
- id: "basic", price: "$49/mo", name: "Starter", buttons: [
- {
- text: "Get Started"},
- ],
- features: [
- "Basic indicators", "1 strategy", "Python SDK"],
- },
- {
- id: "pro", price: "$149/mo", name: "Professional", buttons: [
- {
- text: "Get Pro"},
- ],
- features: [
- "Advanced indicators", "5 strategies", "Live code editor"],
- },
- {
- id: "enterprise", price: "$499/mo", name: "Enterprise", buttons: [
- {
- text: "Contact Us"},
- ],
- features: [
- "Unlimited strategies", "Dedicated support", "API access"],
- },
+ { id: "basic", price: "$49/mo", name: "Starter", buttons: [{ text: "Get Started" }], features: ["Basic indicators", "1 strategy", "Python SDK"] },
+ { id: "pro", price: "$149/mo", name: "Professional", buttons: [{ text: "Get Pro" }], features: ["Advanced indicators", "5 strategies", "Live code editor"] },
+ { id: "enterprise", price: "$499/mo", name: "Enterprise", buttons: [{ text: "Contact Us" }], features: ["Unlimited strategies", "Dedicated support", "API access"] },
]}
title="Choose Your Trading Plan"
description="Select the plan that fits your trading goals."
/>
-