init commit

This commit is contained in:
inhale-dir
2025-05-23 23:08:13 +02:00
parent 7ddffa1afe
commit 91b4b5802f
18 changed files with 2193 additions and 232 deletions
+6
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))
}