Cleaned up template

This commit is contained in:
2025-07-28 11:15:58 +02:00
parent 0f9bbb85b1
commit 1921efc76a
19 changed files with 456 additions and 222 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))
}