diff --git a/js/src/App.tsx b/js/src/App.tsx index 72ffd96..8638d5f 100644 --- a/js/src/App.tsx +++ b/js/src/App.tsx @@ -9,6 +9,7 @@ import { QueryClientProvider, } from '@tanstack/react-query' import PathResolver from "./pages/path-resolver"; +import { SettingsPage } from "./pages/settings-page"; const queryClient = new QueryClient(); @@ -40,7 +41,8 @@ function AuthenticatedApp() { return ( - } /> + } /> + } /> ); diff --git a/js/src/components/ui/breadcrumb.tsx b/js/src/components/ui/breadcrumb.tsx new file mode 100644 index 0000000..db9afc0 --- /dev/null +++ b/js/src/components/ui/breadcrumb.tsx @@ -0,0 +1,122 @@ +import * as React from "react" +import { Slot } from "radix-ui" + +import { cn } from "@/lib/utils" +import { ChevronRightIcon, MoreHorizontalIcon } from "lucide-react" + +function Breadcrumb({ className, ...props }: React.ComponentProps<"nav">) { + return ( +