Add foundational UI components (sidebar, some basic navigation)

This commit is contained in:
2025-07-01 18:44:15 +09:00
parent 20314c64b2
commit b33b470e7b
16 changed files with 2427 additions and 19 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 }