init project + layout

This commit is contained in:
Ishaan Dey
2024-04-06 19:03:04 -04:00
parent 775c425971
commit f32d84d2c2
13 changed files with 1363 additions and 290 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))
}