"use client"; import React from "react"; import { usePathname } from "next/navigation"; export function AddressBar() { const pathname = usePathname(); return (
acme.com
{pathname ? ( <> / {pathname .split("/") .slice(1) .filter((s) => !!s) .map((segment) => { return ( {segment} / ); })} ) : null}
); }