Components
A breadcrumb navigation where each crumb is prefixed with a small icon such as a house, folder, or file.
Loading preview...
import { Breadcrumb02 } from "@/components/ui/breadcrumb-02";
export default function Default() {
return (
<div className="flex min-h-[220px] w-full items-center justify-center bg-background p-8 text-foreground">
<Breadcrumb02 />
</div>
);
}