Compare commits
1 Commits
version_12
...
version_11
| Author | SHA1 | Date | |
|---|---|---|---|
| 36704a7904 |
182
src/app/page.tsx
182
src/app/page.tsx
@@ -11,16 +11,9 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
|||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||||
import { BarChart2, CalendarDays, Gauge, MessageSquare, ShieldCheck, Star } from "lucide-react";
|
import { BarChart2, CalendarDays, Gauge, MessageSquare, ShieldCheck, Star, BrainCircuit } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
const currencyPairs = [
|
|
||||||
{ name: "EUR/USD", href: "/chart?pair=EURUSD" },
|
|
||||||
{ name: "GBP/USD", href: "/chart?pair=GBPUSD" },
|
|
||||||
{ name: "USD/JPY", href: "/chart?pair=USDJPY" },
|
|
||||||
{ name: "AUD/USD", href: "/chart?pair=AUDUSD" }
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="expand-hover"
|
defaultButtonVariant="expand-hover"
|
||||||
@@ -38,10 +31,14 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Dashboard", id: "hero" },
|
{
|
||||||
{ name: "Features", id: "features" },
|
name: "Dashboard", id: "hero"},
|
||||||
{ name: "Pricing", id: "pricing" },
|
{
|
||||||
...currencyPairs.map(p => ({ name: p.name, id: p.href }))
|
name: "Features", id: "features"},
|
||||||
|
{
|
||||||
|
name: "Analytics", id: "analytics"},
|
||||||
|
{
|
||||||
|
name: "Pricing", id: "pricing"},
|
||||||
]}
|
]}
|
||||||
brandName="ForexFlow"
|
brandName="ForexFlow"
|
||||||
/>
|
/>
|
||||||
@@ -49,17 +46,44 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplit
|
<HeroSplit
|
||||||
background={{ variant: "plain" }}
|
background={{
|
||||||
|
variant: "plain"}}
|
||||||
title="Master the Markets with Professional Forex Analytics"
|
title="Master the Markets with Professional Forex Analytics"
|
||||||
description="Gain a competitive edge with real-time charting, AI-driven pattern recognition, and comprehensive risk management tools designed for modern traders."
|
description="Gain a competitive edge with real-time charting, AI-driven pattern recognition, and comprehensive risk management tools designed for modern traders."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get Started", href: "#features" },
|
{
|
||||||
{ text: "View Charts", href: "/chart?pair=EURUSD" },
|
text: "Get Started", href: "#features"},
|
||||||
|
{
|
||||||
|
text: "View Demo", href: "#"},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/business-files-desk-notebook-showing-forex-trading-indexes-prices_482257-84924.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/business-files-desk-notebook-showing-forex-trading-indexes-prices_482257-84924.jpg?_wi=1"
|
||||||
imageAlt="Forex trading platform dashboard"
|
imageAlt="Forex trading platform dashboard"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
marqueeItems={currencyPairs.map(p => ({ type: "text", text: p.name }))}
|
avatars={[
|
||||||
|
{
|
||||||
|
src: "http://img.b2bpic.net/free-photo/smile-woman-talking-phone-looking-camera_23-2148317284.jpg", alt: "Trader avatar 1"},
|
||||||
|
{
|
||||||
|
src: "http://img.b2bpic.net/free-photo/portrait-woman-working-business-with-computer_482257-20185.jpg", alt: "Trader avatar 2"},
|
||||||
|
{
|
||||||
|
src: "http://img.b2bpic.net/free-photo/young-businessman-working-from-his-office-concept-hard-work_181624-33428.jpg", alt: "Trader avatar 3"},
|
||||||
|
{
|
||||||
|
src: "http://img.b2bpic.net/free-photo/experienced-senior-female-executive-eyeglasses_1262-5027.jpg", alt: "Trader avatar 4"},
|
||||||
|
{
|
||||||
|
src: "http://img.b2bpic.net/free-photo/happy-executive-analyzing-document_1098-3324.jpg", alt: "Trader avatar 5"},
|
||||||
|
]}
|
||||||
|
avatarText="Join 10,000+ traders"
|
||||||
|
marqueeItems={[
|
||||||
|
{
|
||||||
|
type: "text", text: "EUR/USD Spread 0.2 Pips"},
|
||||||
|
{
|
||||||
|
type: "text", text: "Real-time Data Feed Active"},
|
||||||
|
{
|
||||||
|
type: "text", text: "AI Pattern Engine Online"},
|
||||||
|
{
|
||||||
|
type: "text", text: "Global Liquidity Access"},
|
||||||
|
{
|
||||||
|
type: "text", text: "24/7 Market Monitoring"},
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -69,29 +93,59 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{ icon: BarChart2, title: "Interactive Charting", description: "100+ indicators and real-time data integration with multi-frame analysis.", button: { text: "View EUR/USD", href: "/chart?pair=EURUSD" } },
|
{
|
||||||
{ icon: Star, title: "AI Pattern Recognition", description: "Auto-detect complex chart patterns like wedges, flags, and double bottoms.", button: { text: "View GBP/USD", href: "/chart?pair=GBPUSD" } },
|
icon: BarChart2,
|
||||||
{ icon: CalendarDays, title: "Economic Data Feed", description: "Real-time calendar tracking with impact analysis and historical performance data." },
|
title: "Interactive Charting", description: "100+ indicators and real-time data integration with multi-frame analysis."},
|
||||||
{ icon: Gauge, title: "Risk Management", description: "Integrated calculators for position sizing, margin, and pip value assessment." },
|
{
|
||||||
{ icon: MessageSquare, title: "Social Community", description: "Share trade ideas and collaborate with top traders in your currency pairs." },
|
icon: Star,
|
||||||
{ icon: ShieldCheck, title: "Strategy Backtesting", description: "Define and test strategies against deep historical data for ultimate confidence." },
|
title: "AI Pattern Recognition", description: "Auto-detect complex chart patterns like wedges, flags, and double bottoms."},
|
||||||
|
{
|
||||||
|
icon: CalendarDays,
|
||||||
|
title: "Economic Data Feed", description: "Real-time calendar tracking with impact analysis and historical performance data."},
|
||||||
|
{
|
||||||
|
icon: Gauge,
|
||||||
|
title: "Risk Management", description: "Integrated calculators for position sizing, margin, and pip value assessment."},
|
||||||
|
{
|
||||||
|
icon: MessageSquare,
|
||||||
|
title: "Social Community", description: "Share trade ideas and collaborate with top traders in your currency pairs."},
|
||||||
|
{
|
||||||
|
icon: ShieldCheck,
|
||||||
|
title: "Strategy Backtesting", description: "Define and test strategies against deep historical data for ultimate confidence."},
|
||||||
]}
|
]}
|
||||||
title="Built for Precision Trading"
|
title="Built for Precision Trading"
|
||||||
description="Advanced tools for technical, fundamental, and risk-focused analysis in one seamless environment."
|
description="Advanced tools for technical, fundamental, and risk-focused analysis in one seamless environment."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="analytics" data-section="analytics">
|
||||||
|
<MetricCardEleven
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="split"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
metrics={[
|
||||||
|
{
|
||||||
|
id: "pred-1", value: "94%", title: "Prediction Accuracy", description: "AI-powered forecast reliability for major currency pairs.", imageSrc: "http://img.b2bpic.net/free-photo/abstract-data-visualization-concept_1048-12001.jpg", imageAlt: "Prediction accuracy metric"},
|
||||||
|
{
|
||||||
|
id: "journal-1", value: "2.4x", title: "Win/Loss Ratio", description: "Tracked journal insights improving average trade outcomes.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-using-tablet-analyzing-financial-data_482257-29623.jpg", imageAlt: "Trade journal performance"},
|
||||||
|
]}
|
||||||
|
title="AI-Powered Predictive Analytics"
|
||||||
|
description="Maximize your trading potential with a comprehensive trade journal and an intelligent performance dashboard that learns from your history."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
<div id="metrics" data-section="metrics">
|
||||||
<MetricCardEleven
|
<MetricCardEleven
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{ id: "m1", value: "EUR/USD", title: "Major Pair", description: "Check live charts for EUR/USD", imageSrc: "http://img.b2bpic.net/free-photo/connecting-lines-dots-with-floating-particles_1048-12013.jpg" },
|
{
|
||||||
{ id: "m2", value: "GBP/USD", title: "Major Pair", description: "Check live charts for GBP/USD", imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-works-remotely-from-cozy-apartment-evening-reviewing-company-stock-market_482257-134074.jpg" },
|
id: "m1", value: "100+", title: "Indicators", description: "Customizable technical tools", imageSrc: "http://img.b2bpic.net/free-photo/connecting-lines-dots-with-floating-particles_1048-12013.jpg", imageAlt: "Indicators icon"},
|
||||||
{ id: "m3", value: "USD/JPY", title: "Major Pair", description: "Check live charts for USD/JPY", imageSrc: "http://img.b2bpic.net/free-photo/stock-market-graph-business-analysis-investment-monitors_482257-29619.jpg" },
|
{
|
||||||
|
id: "m2", value: "24/7", title: "Support", description: "Real-time economic data", imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-works-remotely-from-cozy-apartment-evening-reviewing-company-stock-market_482257-134074.jpg", imageAlt: "Calendar icon"},
|
||||||
|
{
|
||||||
|
id: "m3", value: "99.9%", title: "Accuracy", description: "Data processing power", imageSrc: "http://img.b2bpic.net/free-photo/stock-market-graph-business-analysis-investment-monitors_482257-29619.jpg", imageAlt: "Calc icon"},
|
||||||
]}
|
]}
|
||||||
buttons={[{ text: "Explore All Markets", href: "/chart?pair=EURUSD" }]}
|
|
||||||
title="Empowering Global Traders"
|
title="Empowering Global Traders"
|
||||||
description="Performance metrics driven by data for every market condition."
|
description="Performance metrics driven by data for every market condition."
|
||||||
/>
|
/>
|
||||||
@@ -103,9 +157,16 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{ id: "1", name: "Sarah Johnson", role: "Full-time Trader", testimonial: "The AI pattern recognition saved me so much time. This is my go-to terminal now.", imageSrc: "http://img.b2bpic.net/free-photo/successful-expert_1098-14503.jpg" },
|
{
|
||||||
{ id: "2", name: "Michael Chen", role: "Swing Trader", testimonial: "The integration between news feed and charts is industry-leading. Excellent UI.", imageSrc: "http://img.b2bpic.net/free-photo/agent-work_1098-12714.jpg" },
|
id: "1", name: "Sarah Johnson", role: "Full-time Trader", testimonial: "The AI pattern recognition saved me so much time. This is my go-to terminal now.", imageSrc: "http://img.b2bpic.net/free-photo/successful-expert_1098-14503.jpg"},
|
||||||
{ id: "3", name: "Emily Rodriguez", role: "Quantitative Analyst", testimonial: "Backtesting capabilities are top-notch. It allows me to test my strategies instantly.", imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151098592.jpg" },
|
{
|
||||||
|
id: "2", name: "Michael Chen", role: "Swing Trader", testimonial: "The integration between news feed and charts is industry-leading. Excellent UI.", imageSrc: "http://img.b2bpic.net/free-photo/agent-work_1098-12714.jpg"},
|
||||||
|
{
|
||||||
|
id: "3", name: "Emily Rodriguez", role: "Quantitative Analyst", testimonial: "Backtesting capabilities are top-notch. It allows me to test my strategies instantly.", imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151098592.jpg"},
|
||||||
|
{
|
||||||
|
id: "4", name: "David Kim", role: "Prop Trader", testimonial: "Finally a platform that feels as fast as a Bloomberg terminal but is much cheaper.", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-office-engages-communication-virtual-presentation-talking_482257-133582.jpg"},
|
||||||
|
{
|
||||||
|
id: "5", name: "Anna Petrova", role: "Currency Expert", testimonial: "The sentiment gauge is remarkably accurate for my daily bias, highly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/factory-inspector-suit-monitoring-solar-panel-production-output_482257-125982.jpg"},
|
||||||
]}
|
]}
|
||||||
title="Trusted by Professional Traders"
|
title="Trusted by Professional Traders"
|
||||||
description="Join our community and see why traders globally rely on our advanced analytical suite."
|
description="Join our community and see why traders globally rely on our advanced analytical suite."
|
||||||
@@ -118,8 +179,18 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
plans={[
|
||||||
{ id: "free", title: "Free Tier", price: "$0", period: "/mo", features: ["EUR/USD access", "Basic Indicators", "Economic Calendar"], button: { text: "Start with EUR/USD", href: "/chart?pair=EURUSD" }, imageSrc: "http://img.b2bpic.net/free-photo/zoom-out-home-office-with-monitors-stock-market_482257-29630.jpg" },
|
{
|
||||||
{ id: "pro", title: "Pro Plan", price: "$19", period: "/mo", features: ["Full Market Access", "Backtesting Module", "API Integrations"], button: { text: "Upgrade Now", href: "/chart?pair=EURUSD" }, imageSrc: "http://img.b2bpic.net/free-photo/business-files-desk-notebook-showing-forex-trading-indexes-prices_482257-84924.jpg?_wi=2" },
|
id: "free", title: "Free Tier", price: "$0", period: "/mo", features: [
|
||||||
|
"Advanced Charting", "Basic Indicators", "Economic Calendar", "Live News Feed"],
|
||||||
|
button: {
|
||||||
|
text: "Get Started", href: "#"},
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/zoom-out-home-office-with-monitors-stock-market_482257-29630.jpg", imageAlt: "Zoom out of home office with monitors for stock market."},
|
||||||
|
{
|
||||||
|
id: "pro", title: "Pro Plan", price: "$19", period: "/mo", features: [
|
||||||
|
"AI Pattern Recognition", "Backtesting Module", "API Integrations", "Advanced Sentiment", "Cloud Alerts"],
|
||||||
|
button: {
|
||||||
|
text: "Upgrade to Pro", href: "#"},
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/business-files-desk-notebook-showing-forex-trading-indexes-prices_482257-84924.jpg?_wi=2", imageAlt: "Zoom out of home office with monitors for stock market."},
|
||||||
]}
|
]}
|
||||||
title="Straightforward Pricing"
|
title="Straightforward Pricing"
|
||||||
description="Access all core tools for free, upgrade for advanced AI and automation features."
|
description="Access all core tools for free, upgrade for advanced AI and automation features."
|
||||||
@@ -131,8 +202,12 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{ id: "1", title: "Can I view charts for specific pairs?", content: "Yes, use our dedicated chart portal to select any of your preferred currency pairs." },
|
{
|
||||||
{ id: "2", title: "Are custom parameters supported?", content: "Yes, every link to the chart page supports custom pair parameters in the URL." },
|
id: "1", title: "Is the charting engine really free?", content: "Yes, our core charting engine with 100+ indicators is free for all users."},
|
||||||
|
{
|
||||||
|
id: "2", title: "Can I integrate my MT4/MT5 account?", content: "Pro users can bridge their accounts via API for seamless trade journal sync."},
|
||||||
|
{
|
||||||
|
id: "3", title: "Is the data real-time?", content: "We offer real-time data for major pairs with high-speed delivery for our pro tier."},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/futuristic-data-interface_23-2152011741.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/futuristic-data-interface_23-2152011741.jpg"
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
@@ -144,18 +219,49 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{
|
||||||
|
variant: "sparkles-gradient"}}
|
||||||
text="Ready to elevate your trading journey? Join thousands of professional traders today."
|
text="Ready to elevate your trading journey? Join thousands of professional traders today."
|
||||||
buttons={[{ text: "View EUR/USD Chart", href: "/chart?pair=EURUSD" }]}
|
buttons={[
|
||||||
|
{
|
||||||
|
text: "Create Account", href: "#"},
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Product", items: currencyPairs.map(p => ({ label: p.name, href: p.href })) },
|
{
|
||||||
{ title: "Resources", items: [{ label: "Documentation", href: "#" }, { label: "Community", href: "#" }] },
|
title: "Product", items: [
|
||||||
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Privacy Policy", href: "#" }] },
|
{
|
||||||
|
label: "Charting Engine", href: "#features"},
|
||||||
|
{
|
||||||
|
label: "Economic Calendar", href: "#"},
|
||||||
|
{
|
||||||
|
label: "Backtesting", href: "#"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Resources", items: [
|
||||||
|
{
|
||||||
|
label: "Documentation", href: "#"},
|
||||||
|
{
|
||||||
|
label: "Community", href: "#"},
|
||||||
|
{
|
||||||
|
label: "API Reference", href: "#"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{
|
||||||
|
label: "About Us", href: "#"},
|
||||||
|
{
|
||||||
|
label: "Privacy Policy", href: "#"},
|
||||||
|
{
|
||||||
|
label: "Terms of Service", href: "#"},
|
||||||
|
],
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
logoText="ForexFlow"
|
logoText="ForexFlow"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user