Integrated a from ai generated dashboard

This commit is contained in:
2026-01-27 13:31:35 +01:00
parent 0a78d88465
commit 061e59925c
7 changed files with 445 additions and 19 deletions

23
lib/types/dashboard.ts Normal file
View File

@@ -0,0 +1,23 @@
import { LucideIcon } from "lucide-react";
export interface DashboardStat {
label: string;
value: string;
change?: string;
trend?: "up" | "down" | "neutral";
icon: LucideIcon;
}
export interface ModuleItem {
id: string;
title: string;
description: string;
icon: LucideIcon;
path: string;
color?: string; // Optional nice-to-have accent color
}
export interface ModuleCategory {
title: string;
items: ModuleItem[];
}