Add more stuff. Trying to fix prettier now

This commit is contained in:
2025-05-13 09:28:17 -05:00
parent 0f4db3f451
commit 6b667c2dad
15 changed files with 574 additions and 16 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))
}