feat(website): add shadcn

This commit is contained in:
Simon
2025-12-22 20:49:32 +08:00
parent 87596469b6
commit e3c612c338
6 changed files with 216 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from 'clsx'
import { twMerge } from 'tailwind-merge'
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}