added biome

This commit is contained in:
BeauTroll
2026-01-19 13:35:20 +01:00
parent 10859a4e64
commit 0bea7bc3f4
17 changed files with 1226 additions and 194 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))
}