This commit is contained in:
Oliver Bryan
2026-01-07 15:02:52 +00:00
parent 5d2ee6cc13
commit dfbc26af3a
9 changed files with 268 additions and 5 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))
}