added shadcn dashbaord

This commit is contained in:
briannelson95
2025-07-04 16:09:55 -04:00
parent e6e24f12d4
commit 725752e39a
46 changed files with 6332 additions and 33 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))
}