feat: sidebar

This commit is contained in:
Nicolas Meienberger
2025-10-21 20:41:24 +02:00
parent 06cb401cf7
commit 6960b4d71e
10 changed files with 992 additions and 34 deletions

View File

@@ -0,0 +1,13 @@
import { cn } from "~/lib/utils"
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...props}
/>
)
}
export { Skeleton }