Skip to content

Commit c0389e9

Browse files
committed
chore(dashboard): changing data dummy all to zero
1 parent c1c1f3d commit c0389e9

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

app/dashboard/page.tsx

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,19 @@ import Charts from "@/components/Charts";
1010
import LoadingSpinner from "@/components/LoadingSpinner";
1111

1212
// chart dummy data
13-
const dummyJmlMahasiswa = [20, 9, 12, 5, 7, 10, 15, 20, 25, 30];
13+
const dummyJmlMahasiswa = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
1414
const dummyDates = [
15-
"2023-07-18T15:50:24+0000",
16-
"2023-07-25T15:50:24+0000",
17-
"2023-07-30T15:50:24+0000",
18-
"2023-08-01T15:50:24+0000",
19-
"2023-08-05T15:50:24+0000",
20-
"2023-08-08T15:50:24+0000",
21-
"2023-08-15T15:50:24+0000",
22-
"2023-08-21T15:50:24+0000",
23-
"2023-08-30T15:50:24+0000",
24-
"2023-09-01T15:50:24+0000",
15+
"2023-09-18T00:00:00+0700",
16+
"2023-09-19T00:00:00+0700",
17+
"2023-09-20T00:00:00+07:00",
18+
"2023-09-21T00:00:00+0700",
19+
"2023-09-22T00:00:00+0700",
20+
"2023-09-23T00:00:00+0700",
21+
"2023-09-24T00:00:00+0700",
22+
"2023-09-25T00:00:00+0700",
23+
"2023-09-26T00:00:00+0700",
24+
"2023-09-27T00:00:00+0700",
25+
"2023-09-28T00:00:00+0700",
2526
];
2627

2728
const tabs = [
@@ -31,47 +32,47 @@ const tabs = [
3132
icon: MdOutlineShield,
3233
bgColor: "#E7EDFE",
3334
iconBgColor: "#185C99",
34-
total: 249,
35+
total: 0,
3536
},
3637
{
3738
name: "Panitia Divisi",
3839
href: "/dashboard/panitiafivisi",
3940
icon: MdOutlineShield,
4041
bgColor: "#E7EDFE",
4142
iconBgColor: "#185C99",
42-
total: 19,
43+
total: 0,
4344
},
4445
{
4546
name: "Organisator",
4647
href: "/dashboard/organisator",
4748
icon: HiOutlineOfficeBuilding,
4849
bgColor: "#FEE7E7",
4950
iconBgColor: "#E53E3E",
50-
total: 86,
51+
total: 0,
5152
},
5253
{
5354
name: "Mahasiswa",
5455
href: "/dashboard/mahasiswa",
5556
icon: MdOutlineSchool,
5657
bgColor: "#FEF5E7",
5758
iconBgColor: "#D77300",
58-
total: 3409,
59+
total: 0,
5960
},
6061
{
6162
name: "STATE",
6263
href: "/dashboard/daftarstate ",
6364
icon: MdOutlineAirplanemodeActive,
6465
bgColor: "#ECE7FE",
6566
iconBgColor: "#4A05DE",
66-
total: 49,
67+
total: 0,
6768
},
6869
{
6970
name: "Malpun",
7071
href: "/dashboard/malpun ",
7172
icon: HiOutlineSparkles,
7273
bgColor: "#FEE7FC",
7374
iconBgColor: "#DE05C8",
74-
total: 4021,
75+
total: 0,
7576
},
7677
];
7778

0 commit comments

Comments
 (0)