update project structure

This commit is contained in:
mr0x50
2024-11-19 22:10:09 +01:00
parent f4c7017997
commit 23977a171f
236 changed files with 32 additions and 58 deletions

6
lib/utils.ts Normal file
View File

@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}