add shadcn

This commit is contained in:
2025-07-10 08:10:04 +02:00
parent 8a576f2557
commit eaa6b971bf
9 changed files with 511 additions and 27 deletions

6
lib/utils.ts Normal file
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));
}