Skip to content

Commit

Permalink
feat: remove cards with admin statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
ToxicToast committed Jun 18, 2024
1 parent 3f9602b commit b86eefb
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions apps/azkaban-admin-ui/src/features/dashboard/dashboard.page.tsx
Original file line number Diff line number Diff line change
@@ -1,32 +1,30 @@
import { Stats } from './components';
import { DollarSign, Users, CreditCard, Activity } from 'lucide-react';
import {
DollarSign,
Users,
CreditCard,
Activity,
Group,
Notebook,
} from 'lucide-react';

function DashboardPage() {
return (
<div className="grid gap-4 md:grid-cols-2 md:gap-8 lg:grid-cols-4">
<Stats
title="Total Revenue"
icon={<DollarSign className="h-4 w-4 text-muted-foreground" />}
statistic="$45,231.89"
fromLastMonth="+20.1%"
title="Total Notifications"
icon={<Notebook className="h-4 w-4 text-muted-foreground" />}
statistic="0"
/>
<Stats
title="Subscriptions"
title="Total Users"
icon={<Users className="h-4 w-4 text-muted-foreground" />}
statistic="+2350"
fromLastMonth="+180.1%"
statistic="0"
/>
<Stats
title="Sales"
icon={<CreditCard className="h-4 w-4 text-muted-foreground" />}
statistic="+12,234"
fromLastMonth="+19%"
/>
<Stats
title="Active Now"
icon={<Activity className="h-4 w-4 text-muted-foreground" />}
statistic="+573"
fromLastMonth="+201"
title="Total Groups"
icon={<Group className="h-4 w-4 text-muted-foreground" />}
statistic="0"
/>
</div>
);
Expand Down

0 comments on commit b86eefb

Please sign in to comment.