Init astro app

This commit is contained in:
2025-07-13 19:56:36 -03:00
parent d5ee4b91d5
commit d0299ca1a1
14 changed files with 4808 additions and 0 deletions

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))
}