basic site

This commit is contained in:
2024-10-18 10:33:48 +02:00
parent 4c7dc76691
commit cd0a08890d
23 changed files with 9007 additions and 1 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))
}