feat(client): workspace

Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit is contained in:
2025-12-24 21:11:20 +08:00
parent 0d3651f923
commit cfe8bd0bfa
35 changed files with 5086 additions and 33 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 }