-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdashboard.ts
More file actions
25 lines (22 loc) · 731 Bytes
/
dashboard.ts
File metadata and controls
25 lines (22 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export const statsData = [
{ title: "Projects", value: "24", change: "+12%" },
{ title: "Users", value: "1,240", change: "+5%" },
{ title: "Revenue", value: "$12.4K", change: "+18%" },
{ title: "Growth", value: "89%", change: "+3%" },
];
export const activityData = [
{ title: "New user registered", time: "2 min ago" },
{ title: "Payment received", time: "10 min ago" },
{ title: "Project updated", time: "1 hour ago" },
];
export const projects = [
{ name: "Admin Dashboard", desc: "Analytics panel" },
{ name: "E-commerce App", desc: "Shopping UI" },
{ name: "Portfolio", desc: "Personal site" },
];
export const actions = [
"Create Project",
"Invite User",
"Generate Report",
"View Analytics",
];