This commit is contained in:
2025-04-29 17:18:40 +02:00
parent ab5eb23238
commit a1e9b667f3
11 changed files with 693 additions and 6 deletions

6
src/lib/utils.ts Normal file
View File

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