aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-07-08 15:15:53 +0200
committerlonkaars <loek@pipeframe.xyz>2021-07-08 15:15:53 +0200
commitc80a8b2615f2b576c1a022b16141d54f2c24f6a2 (patch)
tree21eec8bc7486401ceb97e78ec498057090255579 /pages
parent57b0a48a6b6b999161bdbd83267a59ac4c2fb430 (diff)
buttons
Diffstat (limited to 'pages')
-rw-r--r--pages/mobile/index.tsx15
1 files changed, 14 insertions, 1 deletions
diff --git a/pages/mobile/index.tsx b/pages/mobile/index.tsx
index 5e3a7cf..50d2558 100644
--- a/pages/mobile/index.tsx
+++ b/pages/mobile/index.tsx
@@ -1,6 +1,7 @@
import { ReactNode, useState } from 'react';
import AppBar from '@material-ui/core/AppBar';
+import Button from '@material-ui/core/Button';
import Divider from '@material-ui/core/Divider';
import IconButton from '@material-ui/core/IconButton';
import List from '@material-ui/core/List';
@@ -14,6 +15,7 @@ import AccountCircleRoundedIcon from '@material-ui/icons/AccountCircleRounded';
import HomeRoundedIcon from '@material-ui/icons/HomeRounded';
import MenuRoundedIcon from '@material-ui/icons/MenuRounded';
import SettingsRoundedIcon from '@material-ui/icons/SettingsRounded';
+import { LoginRoundedIcon, QRCodeRoundedIcon } from '../../components/icons';
export type pages = 'home' | 'account' | 'settings';
export function MobileWrapper(props: {
@@ -69,6 +71,17 @@ export function MobileWrapper(props: {
export default function Mobile() {
return <MobileWrapper page='home'>
- <h2>gert</h2>
+ <Button
+ variant='outlined'
+ color='secondary'
+ startIcon={<QRCodeRoundedIcon />}
+ children='Scan QR code'
+ />
+ <Button
+ variant='contained'
+ color='secondary'
+ startIcon={<LoginRoundedIcon />}
+ children='Log in'
+ />
</MobileWrapper>;
}