This commit is contained in:
2025-08-03 06:15:57 +02:00
parent 0f31cbd991
commit d2fce95eab
89 changed files with 12001 additions and 1 deletions

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

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