import { Link } from 'react-router-dom' import { ArrowRight, CheckCircle2, CircleDollarSign, Download, ExternalLink, KeyRound, ShieldCheck, Wallet, Zap, } from 'lucide-react' import { ROUTES } from '../../router/paths' const setupSteps = [ { title: 'Create your NOFX account', detail: 'Your account keeps the Autopilot configuration, wallet authorization state, and trading dashboard in one place.', icon: KeyRound, action: 'Create account', to: ROUTES.register, }, { title: 'Fund the AI fee wallet', detail: 'NOFX prepares a Base USDC wallet for Claw402.ai data and model calls. This wallet is separate from trading collateral.', icon: CircleDollarSign, action: 'Open deposit QR', to: ROUTES.login, returnUrl: `${ROUTES.traders}?setup=claw402`, }, { title: 'Authorize Hyperliquid', detail: 'Connect your trading wallet, approve the NOFX Agent, and approve the builder fee. Funds remain in your Hyperliquid account.', icon: Wallet, action: 'Connect exchange', to: ROUTES.login, returnUrl: `${ROUTES.traders}?setup=hyperliquid`, }, { title: 'Deposit trading USDC', detail: 'Add USDC on Hyperliquid, then start NOFX Autopilot. The strategy is created and launched automatically.', icon: Zap, action: 'Open Hyperliquid', href: 'https://app.hyperliquid.xyz/', }, ] const pipeline = [ 'Read the live Claw402.ai board, with US stocks prioritized before crypto.', 'Fetch Signal Lab and cost/liquidation heatmap details for each candidate.', 'Confirm with raw OHLCV candles, then trade full-size 10x only when the setup is strong enough.', ] export function TraderLaunchGuestPage() { return (
NOFX runs a single Claw402-driven strategy: board, per-market details, liquidation structure, candles, execution. No strategy picker, no manual symbol picking required.
{step.detail}
NOFX does not need your main-wallet private key. Install or unlock an EVM wallet, fund Hyperliquid with USDC, then authorize the NOFX Agent after sign-in.
The same production path runs every cycle. The interface only asks you to fund, authorize, and start.
{item}