Add app to git

This commit is contained in:
2025-01-18 20:40:08 -05:00
parent abf4dd3b8a
commit 887b8c5919
18 changed files with 1877 additions and 263 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))
}