initial commit

This commit is contained in:
2024-06-09 14:52:51 +02:00
parent a71467fec5
commit c1b817a128
21 changed files with 8371 additions and 51 deletions

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

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