Update nextjs-vercel

This commit is contained in:
Rami Bitar
2026-06-28 15:24:24 -04:00
parent cc75b4dac0
commit 2b93443340
65 changed files with 12702 additions and 17 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))
}