'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { useAccount } from 'wagmi' export default function SettingsClient() { const { address, isConnected } = useAccount() const pathname = usePathname() const locale = pathname.split('/')[1] || 'en' const href = (path: string) => `/${locale}${path}` return (
{/* Account card */}

Account

{/* Link to Trades page for bot config */}
Bot & exchange settings
Position size, leverage, TP/SL, Hyperliquid API key, and subscription are managed on the Trades page.
Go to Trades →
{/* Legal links */}

Legal

Privacy Policy → Terms of Service → Contact Us →
) }