// /benchmark/lib/top-nav.jsx — breadcrumb strip rendered inside the React
// root, sitting below the global homepage-parity nav that lives in the
// surrounding HTML. This component no longer carries the brand mark or the
// auth links. Those are in the fixed top nav.

function TopNav({ children }) {
  return (
    <div className="benchmark-breadcrumbs">
      <a href="/">jdcodec.com</a>
      <span className="sep">/</span>
      {children}
    </div>
  );
}

window.TopNav = TopNav;
