diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-02-06 11:19:59 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-02-06 11:19:59 +0100 |
commit | 26a0e352c62889e630a84b0333f4148f740fdd7f (patch) | |
tree | 28bee016b1af48733685aa8619ce6f2b5aecc8bf /pages/account.tsx | |
parent | 6ddbbe145f70fd76f8c60a2eb86efdebd6768d06 (diff) |
added fullwidth prop to Vierkant
Diffstat (limited to 'pages/account.tsx')
-rw-r--r-- | pages/account.tsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pages/account.tsx b/pages/account.tsx new file mode 100644 index 0000000..c596f11 --- /dev/null +++ b/pages/account.tsx @@ -0,0 +1,18 @@ +import { NavBar } from '../components/navbar'; +import { CenteredPage, PageTitle } from '../components/page'; +import { Vierkant } from '../components/ui'; + +export default function AccountPage() { + return ( + <div> + <NavBar/> + <CenteredPage width={802}> + <PageTitle>Profiel</PageTitle> + <Vierkant fullwidth> + Gert + </Vierkant> + </CenteredPage> + </div> + ); +} + |