init shadcn

This commit is contained in:
2025-08-14 15:16:56 -04:00
parent 1e6e7d50aa
commit 114f99aebb
9 changed files with 441 additions and 19 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))
}