Added shadcn and updated layout

This commit is contained in:
2025-06-25 19:19:55 +02:00
parent a9a4332f5e
commit d9de3f4b6e
6 changed files with 205 additions and 7 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))
}