feat: Init

This commit is contained in:
Björn Benouarets
2025-11-04 22:12:09 +01:00
parent 5b5368b7ff
commit ca581a382f
10 changed files with 770 additions and 83 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))
}