prepare layout

This commit is contained in:
kbe
2025-08-13 15:13:57 +02:00
parent f03aaf1927
commit 18ff5b9beb
12 changed files with 1105 additions and 123 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))
}