2023-02-26 15:34:45 +00:00
|
|
|
|
2023-03-02 08:42:51 +00:00
|
|
|
import styles from './page.module.css'
|
2023-03-10 14:07:00 +00:00
|
|
|
import RecurringCol from './components/RecurringCol'
|
|
|
|
|
import CenterCol from './components/CenterCol'
|
|
|
|
|
import RecentTransactions from './components/RecentTransactions'
|
2023-02-26 15:34:45 +00:00
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
return (
|
2023-03-25 08:54:09 +00:00
|
|
|
<>
|
|
|
|
|
<main className={styles.main}>
|
|
|
|
|
<RecurringCol />
|
|
|
|
|
<CenterCol />
|
|
|
|
|
<RecentTransactions />
|
|
|
|
|
</main>
|
|
|
|
|
<div className={styles.overlay}>The demo is best viewed on the Desktop :)</div>
|
|
|
|
|
</>
|
2023-02-26 15:34:45 +00:00
|
|
|
)
|
|
|
|
|
}
|