Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 26 27 28 29 | 3x 12x | import { SummaryCards } from './components/summary-cards';
import { ConversionRateCard } from './components/conversion-rate-card';
import { StatisticCard } from './components/statistic-card';
import { TransactionCard } from './components/transaction-card';
import { WalletCard } from '@/features/wallet/components/wallet-card';
import { Heading } from '@/components/heading';
export const DashboardPage = () => {
return (
<div className="h-full p-[85px] overflow-y-auto">
<Heading as="h1" size="h3">
Overview
</Heading>
<SummaryCards className="mt-6" />
<ConversionRateCard />
<WalletCard className="mt-8" showWithdrawButton={false} />
<StatisticCard />
<TransactionCard maxTransactions={15} />
</div>
);
};
export default DashboardPage;
|