feat: update deps, add pnpm-workspace, modify components

This commit is contained in:
Riccardo Giorato
2026-06-17 09:43:26 +02:00
parent e18f67a7d0
commit 624a729b24
9 changed files with 2418 additions and 1449 deletions
+3 -3
View File
@@ -2,7 +2,7 @@
import { Plus, Loader2, Key, Trash2 } from "lucide-react";
import { Button } from "@/components/ui/button";
import { UserButton, SignedIn } from "@clerk/nextjs";
import { UserButton, Show } from "@clerk/nextjs";
interface PageData {
id: number;
@@ -103,7 +103,7 @@ export function PageSidebar({
<Key className="w-4 h-4" />
</Button>
<SignedIn>
<Show when="signed-in">
<div className="w-10 h-10 glass-panel glass-panel-hover rounded-md flex items-center justify-center text-muted-foreground hover:text-white transition-colors">
<UserButton
appearance={{
@@ -113,7 +113,7 @@ export function PageSidebar({
}}
/>
</div>
</SignedIn>
</Show>
</div>
</aside>
);