Wip on homepage.

Add documentation how to optimize code size in production.
This commit is contained in:
kbe
2025-08-16 22:43:10 +02:00
parent 31534b2c0c
commit 17e6711299
14 changed files with 954 additions and 217 deletions

View File

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