Remove sample files and install shadcn/ui

This commit is contained in:
2024-01-14 17:58:02 +01:00
parent f1dac2559e
commit ff50fe5056
19 changed files with 154 additions and 648 deletions

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