foldbank-mock/web/app/page.tsx
Ameya Shenoy 903beadfaa
fix: add overlay on mobile
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2023-03-25 14:24:09 +05:30

18 lines
486 B
TypeScript

import styles from './page.module.css'
import RecurringCol from './components/RecurringCol'
import CenterCol from './components/CenterCol'
import RecentTransactions from './components/RecentTransactions'
export default function Home() {
return (
<>
<main className={styles.main}>
<RecurringCol />
<CenterCol />
<RecentTransactions />
</main>
<div className={styles.overlay}>The demo is best viewed on the Desktop :)</div>
</>
)
}