aboutsummaryrefslogtreecommitdiff
path: root/pages/account.tsx
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-02-06 11:19:59 +0100
committerlonkaars <l.leblansch@gmail.com>2021-02-06 11:19:59 +0100
commit26a0e352c62889e630a84b0333f4148f740fdd7f (patch)
tree28bee016b1af48733685aa8619ce6f2b5aecc8bf /pages/account.tsx
parent6ddbbe145f70fd76f8c60a2eb86efdebd6768d06 (diff)
added fullwidth prop to Vierkant
Diffstat (limited to 'pages/account.tsx')
-rw-r--r--pages/account.tsx18
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>
+ );
+}
+