Migrate sidebar to use Tailwind/Shadcn

This commit is contained in:
2026-01-21 11:36:41 +00:00
parent 4fc155af0a
commit 56a3105913
19 changed files with 2076 additions and 187 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 }