import Link from "next/link"; import HomeIcon from "../icons/HomeIcon"; export default function Breadcrumbs({ links, }: { links: { title: string; href?: string; target?: string }[]; }) { const current = links.at(-1); return (
{/* {links.length > 1 && links.slice(0, -1).map((link) => { return <> / {link.title} })} */} / {current.title}
); }