start web

This commit is contained in:
MacRimi
2025-02-13 17:28:49 +01:00
parent a28bc19a38
commit 6a44aa0153
37 changed files with 1221 additions and 9 deletions

6
web/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))
}