feat: better home page

This commit is contained in:
rzmk 2025-12-15 11:57:30 -05:00
parent 261b4ba21a
commit 1de7c29050
15 changed files with 1251 additions and 99 deletions

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