'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 (