feat(ui): add sidebar navigation for desktop

This commit is contained in:
shafin-r
2026-02-15 17:24:11 +06:00
parent 96eb2c13b0
commit e5305a1ca2
10 changed files with 1274 additions and 50 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 }