feat: add shadcn + react and community showcase carousel

This commit is contained in:
DuroCodes
2024-06-11 18:28:11 -04:00
parent 3dc5b74cbe
commit 30137eafaf
83 changed files with 1155 additions and 528 deletions

6
src/utils.ts Normal file
View File

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