diff --git a/app/assets/react.svg b/app/assets/react.svg new file mode 100644 index 0000000..6c87de9 --- /dev/null +++ b/app/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/components/ui/breadcrumb.tsx b/app/components/ui/breadcrumb.tsx new file mode 100644 index 0000000..61952b2 --- /dev/null +++ b/app/components/ui/breadcrumb.tsx @@ -0,0 +1,115 @@ +import * as React from "react" +import { Slot } from "@radix-ui/react-slot" +import { ChevronRight, MoreHorizontal } from "lucide-react" + +import { cn } from "~/lib/utils" + +const Breadcrumb = React.forwardRef< + HTMLElement, + React.ComponentPropsWithoutRef<"nav"> & { + separator?: React.ReactNode + } +>(({ ...props }, ref) =>