We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 574153d commit d08f48bCopy full SHA for d08f48b
1 file changed
src/components/ui/app-sidebar.tsx
@@ -25,6 +25,8 @@ import {
25
} from "@/components/ui/sidebar";
26
import { useSidebar } from "@/hooks/use-sidebar-tab";
27
import { UserButton } from "@clerk/nextjs";
28
+import { Icons } from "./icons";
29
+import {Separator} from "./separator";
30
31
const items = [
32
{
@@ -58,6 +60,12 @@ export function AppSidebar() {
58
60
<SidebarGroup>
59
61
<SidebarGroupLabel className="mb-10">
62
<UserButton />
63
+ <Separator orientation="vertical" className="ml-3 bg-primary/10" />
64
+ <div className="flex justify-end ml-3 items-center">
65
+ <span className="font-bold text-lg text-gray-900 mr-2">LockScript Vault</span>
66
+
67
+ <Icons.logo className="h-5 w-5" />
68
+ </div>
69
</SidebarGroupLabel>
70
<SidebarGroupContent>
71
<SidebarMenu>
0 commit comments