feat: new frontend

This commit is contained in:
Arkaprabha Chakraborty
2025-07-09 23:35:01 +05:30
parent 1a0330537a
commit 5f4ead267d
33 changed files with 2318 additions and 0 deletions

10
frontend-v2/lib/utils.ts Normal file
View File

@@ -0,0 +1,10 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}
export function getApiBaseUrl() {
return process.env.NEXT_PUBLIC_API_BASE_URL || "http://localhost:8080";
}