switched over to nextjs

This commit is contained in:
2026-06-26 17:53:58 -05:00
parent 853a59e46e
commit 7b9ffc8cab
53 changed files with 3314 additions and 362 deletions
+6
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));
}