aboutsummaryrefslogtreecommitdiff
path: root/src/pages/settings.tsx
blob: 9446a5f172be47af53a6405fefcd9a6c7479ce8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { NavBar } from '../components/navbar';
import { CenteredPage, PageTitle } from '../components/page';
import { Vierkant } from '../components/ui';
/* import { AccountAvatar } from '../components/account'; */

export default function SettingsPage() {
	return (
		<div>
			<NavBar/>
			<CenteredPage width={802}>
				<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>
	);
}