Integrated a from ai generated dashboard
This commit is contained in:
23
lib/types/dashboard.ts
Normal file
23
lib/types/dashboard.ts
Normal 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[];
|
||||
}
|
||||
Reference in New Issue
Block a user