2025-02-24 09:31:48 +08:00
|
|
|
|
import { DoctorIcon } from '~/components/icons/doctor'
|
|
|
|
|
|
import { GraphIcon } from '~/components/icons/graph'
|
|
|
|
|
|
|
2025-02-23 21:13:31 +07:00
|
|
|
|
export const REPORT = [
|
2025-03-03 21:17:46 +07:00
|
|
|
|
{ title: 'Total User', amount: 10_800, icon: GraphIcon },
|
|
|
|
|
|
{ title: 'Total User Subscribe', amount: 5000, icon: GraphIcon },
|
|
|
|
|
|
{
|
|
|
|
|
|
title: 'Total Nilai Subscribe',
|
|
|
|
|
|
amount: 250_000_000,
|
|
|
|
|
|
icon: GraphIcon,
|
|
|
|
|
|
currency: 'Rp. ',
|
|
|
|
|
|
},
|
2025-02-23 21:13:31 +07:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
export const HISTORY = [
|
|
|
|
|
|
{
|
2025-03-03 21:17:46 +07:00
|
|
|
|
title: 'Total Content Biasa',
|
2025-02-24 09:31:48 +08:00
|
|
|
|
amount: 2890,
|
|
|
|
|
|
icon: GraphIcon,
|
2025-02-23 23:17:06 +07:00
|
|
|
|
counter: [2190, 700],
|
2025-02-23 21:13:31 +07:00
|
|
|
|
},
|
|
|
|
|
|
{
|
2025-03-03 21:17:46 +07:00
|
|
|
|
title: 'Total Content Premium',
|
2025-02-24 09:31:48 +08:00
|
|
|
|
amount: 274,
|
|
|
|
|
|
icon: DoctorIcon,
|
2025-02-23 23:17:06 +07:00
|
|
|
|
counter: [211, 54],
|
2025-02-23 21:13:31 +07:00
|
|
|
|
},
|
|
|
|
|
|
]
|