Initial state with almost all ready to work

This commit is contained in:
2025-04-03 15:11:48 +02:00
parent 0eae0f3248
commit b7e43ef351
15 changed files with 2175 additions and 31 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 cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}