aboutsummaryrefslogtreecommitdiff
path: root/pages/account.tsx
diff options
context:
space:
mode:
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>
+ );
+}
+