Initial commit from v0

#VERCEL_SKIP
This commit is contained in:
v0
2026-01-28 14:18:55 +00:00
parent dbffe3838b
commit c8163d3354
59 changed files with 6655 additions and 0 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 }