feat: refactor UI components and integrate Tailwind CSS for styling

This commit is contained in:
Maximilian Liebmann 2025-05-08 23:41:15 +02:00
parent fc3431f8f4
commit e75e1eb2db
16 changed files with 359 additions and 263 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))
}