diff options
Diffstat (limited to 'src/pages/settings.tsx')
-rw-r--r-- | src/pages/settings.tsx | 25 |
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> + ); +} + |