diff options
Diffstat (limited to 'pages/index.tsx')
-rw-r--r-- | pages/index.tsx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index 99c2ab8..4cd0a1c 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,6 +1,15 @@ +import AppBar from '@material-ui/core/AppBar'; +import Toolbar from '@material-ui/core/Toolbar'; + +import { PressureIcon, SlideKeyframe } from '../components/icons'; + export default function Index() { return <> - <h1>gert</h1> + <AppBar position='static' color='transparent' elevation={0}> + <Toolbar> + <PressureIcon /> + <h1>pressure</h1> + </Toolbar> + </AppBar> </>; } - |