shadcn added

This commit is contained in:
2026-01-24 00:28:30 +01:00
parent d07ec05ecc
commit 77a49dd4bc
5 changed files with 205 additions and 17 deletions

6
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))
}