fix and add charts

This commit is contained in:
2025-04-29 18:45:41 +02:00
parent 6018239c43
commit 3660cc0310
6 changed files with 761 additions and 58 deletions

View File

@ -2,5 +2,5 @@ import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(...inputs));
return twMerge(clsx(inputs));
}