Add shadcn & change font

This commit is contained in:
2024-07-19 09:30:16 -05:00
parent 950fa3967a
commit 3c9a23481e
7 changed files with 244 additions and 11 deletions

6
src/lib/utils.ts Normal file
View File

@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}