Added shadcn

This commit is contained in:
Kenan Alić
2025-09-23 20:33:56 +02:00
parent 08e6b09d43
commit 673a80485f
10 changed files with 242 additions and 15 deletions

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

@@ -0,0 +1,6 @@
/* Shadcn */
import { twMerge } from "tailwind-merge";
import { clsx, type ClassValue } from "clsx";
const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
export { cn };