UI Enhancements

This commit is contained in:
Stijnus
2025-01-24 16:14:48 +01:00
parent 505f1db071
commit 027f6529f2
8 changed files with 774 additions and 418 deletions

6
app/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));
}