deepsite / lib /utils.ts
enzostvs's picture
enzostvs HF Staff
hf.co to huggingface.co
6cca3b1
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
export const COLORS = [
"red",
"blue",
"green",
"yellow",
"purple",
"pink",
"gray",
];
export const MAX_FREE_PROJECTS = 3;