This commit is contained in:
2025-10-16 10:45:58 +02:00
commit d3b4bb0c3a
33 changed files with 1954 additions and 0 deletions

6
src/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));
}