24 lines
657 B
TypeScript
24 lines
657 B
TypeScript
import PageMeta from "../../components/common/PageMeta";
|
|
import CreditBalanceWidget from "../../components/dashboard/CreditBalanceWidget";
|
|
import UsageChartWidget from "../../components/dashboard/UsageChartWidget";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<PageMeta
|
|
title="Dashboard - IGNY8"
|
|
description="IGNY8 Dashboard"
|
|
/>
|
|
<div className="grid grid-cols-12 gap-4 md:gap-6">
|
|
<div className="col-span-12 xl:col-span-4">
|
|
<CreditBalanceWidget />
|
|
</div>
|
|
|
|
<div className="col-span-12 xl:col-span-8">
|
|
<UsageChartWidget />
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|