first commit

This commit is contained in:
Pascal Linxweiler
2026-02-09 16:29:06 +01:00
parent 344ad88856
commit 354d69afb2
26 changed files with 16909 additions and 82 deletions

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