aboutsummaryrefslogtreecommitdiff
path: root/src/pages/settings.tsx
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-01-05 20:59:42 +0100
committerlonkaars <l.leblansch@gmail.com>2021-01-05 20:59:42 +0100
commitfa41c1e6beefd28da6050eb431d2f89d32a0fa39 (patch)
treea0c857f5ea95b5637928ed284e818cf2d5517f01 /src/pages/settings.tsx
parent9b2d93642e2c94ed96d08858f9e0f737eeba5489 (diff)
instellingen pagina beginsels
Diffstat (limited to 'src/pages/settings.tsx')
-rw-r--r--src/pages/settings.tsx25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/pages/settings.tsx b/src/pages/settings.tsx
new file mode 100644
index 0000000..7c886d6
--- /dev/null
+++ b/src/pages/settings.tsx
@@ -0,0 +1,25 @@
+import { NavBar } from '../components/navbar';
+import { CenteredPage, PageTitle } from '../components/page';
+import { Vierkant } from '../components/vierkant';
+/* import { AccountAvatar } from '../components/account'; */
+
+export default function SettingsPage() {
+ return (
+ <div>
+ <NavBar />
+ <CenteredPage>
+ <PageTitle>Instellingen</PageTitle>
+ <Vierkant width="calc(100% - 12px)">
+ <h2>Account</h2>
+ </Vierkant>
+ <Vierkant width="calc(100% - 12px)">
+ <h2>Kleuren</h2>
+ </Vierkant>
+ <Vierkant width="calc(100% - 12px)">
+ <h2>Standaard spelregels</h2>
+ </Vierkant>
+ </CenteredPage>
+ </div>
+ );
+}
+