diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-05-09 18:54:05 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-05-09 18:54:05 +0200 |
commit | 2604a4676abb5ab9d5c01aa2064648dbba0b6a06 (patch) | |
tree | 4a01441222c20747b68889310528cad82e5e86a1 /pages/index.tsx | |
parent | 5a0f2ed7af3bb804219c1be07969103572384ceb (diff) |
beginnings editor
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> </>; } - |