'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' const SURFACES = [ { code: 'B', href: '/cluster', label: 'Topology' }, { code: 'E', href: '/cluster/delivery', label: 'Delivery' }, { code: 'C', href: '/cluster/terminal', label: 'Terminal' }, { code: 'D', href: '/cluster/chat', label: 'Chat' }, ] export function Rail() { const pathname = usePathname() return ( ) }