aboutsummaryrefslogtreecommitdiff
path: root/pages/index.tsx
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-05-09 18:54:05 +0200
committerlonkaars <loek@pipeframe.xyz>2021-05-09 18:54:05 +0200
commit2604a4676abb5ab9d5c01aa2064648dbba0b6a06 (patch)
tree4a01441222c20747b68889310528cad82e5e86a1 /pages/index.tsx
parent5a0f2ed7af3bb804219c1be07969103572384ceb (diff)
beginnings editor
Diffstat (limited to 'pages/index.tsx')
-rw-r--r--pages/index.tsx13
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>
</>;
}
-