Init Astro + Tailwind + Shadcn-ui

This commit is contained in:
2025-07-12 00:23:11 -03:00
parent fa6007c1f3
commit e6e2f5f9cd
15 changed files with 4890 additions and 0 deletions

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