diff --git a/src/assets/templates/employeedb-dark.png b/src/assets/templates/employeedb-dark.png new file mode 100644 index 00000000..7562cdf7 Binary files /dev/null and b/src/assets/templates/employeedb-dark.png differ diff --git a/src/assets/templates/employeedb.png b/src/assets/templates/employeedb.png new file mode 100644 index 00000000..310cf46f Binary files /dev/null and b/src/assets/templates/employeedb.png differ diff --git a/src/components/breadcrumb/breadcrumb.tsx b/src/components/breadcrumb/breadcrumb.tsx new file mode 100644 index 00000000..19af7c7b --- /dev/null +++ b/src/components/breadcrumb/breadcrumb.tsx @@ -0,0 +1,115 @@ +import * as React from 'react'; +import { ChevronRightIcon, DotsHorizontalIcon } from '@radix-ui/react-icons'; +import { Slot } from '@radix-ui/react-slot'; + +import { cn } from '@/lib/utils'; + +const Breadcrumb = React.forwardRef< + HTMLElement, + React.ComponentPropsWithoutRef<'nav'> & { + separator?: React.ReactNode; + } +>(({ ...props }, ref) =>