Feature: credentials page & vaultwarden compose setup (#3534)

Co-authored-by: Suchintan <suchintan@users.noreply.github.com>
This commit is contained in:
Alex Angin
2025-10-16 00:50:33 -04:00
committed by GitHub
parent ea2e73f8cc
commit a610292ea2
11 changed files with 595 additions and 5 deletions

View File

@@ -7,6 +7,7 @@ import {
GearIcon,
LightningBoltIcon,
} from "@radix-ui/react-icons";
import { KeyIcon } from "@/components/icons/KeyIcon.tsx";
function SideNav() {
const { collapsed } = useSidebarStore();
@@ -45,6 +46,11 @@ function SideNav() {
to: "/settings",
icon: <GearIcon className="size-6" />,
},
{
label: "Credentials",
to: "/credentials",
icon: <KeyIcon className="size-6" />,
},
]}
/>
</nav>