import Link from "next/link"; import LiveDashboard from "@/components/LiveDashboard"; export default function DashboardPage() { return ( <> {/* Hero */}

Live Forward Test · Demo Account

ARES Trading Bot

M5 Momentum FVG scalper built in Rust. Targets Fair Value Gaps on XAUUSDm with EMA-20 trend filter, automatic position sizing, and Telegram alerts.

View Trades Backtest Results
{/* Live data — client-side polling */} {/* Strategy */}

Strategy

{/* Backtest CTA */}

Backtest Highlight

M5 · 1 Month · 1% Risk

XAUUSDm · 159 trades · Exness Demo

Full Results →
{[ { label: "Profit Factor", value: "1.42" }, { label: "Net Return", value: "+43.2%" }, { label: "Max Drawdown", value: "−11.5%" }, { label: "Win Rate", value: "55.3%" }, ].map(({ label, value }) => (

{label}

{value}

))}
); } function FeatureCard({ icon, title, body }: { icon: string; title: string; body: string }) { return (
{icon}

{title}

{body}

); }