aboutsummaryrefslogtreecommitdiff
path: root/pages/index.tsx
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-05-14 12:07:47 +0200
committerlonkaars <loek@pipeframe.xyz>2021-05-14 12:07:47 +0200
commit589c8239b2085815405329e0dc46d12d763cb32b (patch)
tree9f16816f5032d8ca35be6ee4a88275d7a3d27c3e /pages/index.tsx
parent45ba5f546b27de69a8134c04c354226711af080c (diff)
editor layout
Diffstat (limited to 'pages/index.tsx')
-rw-r--r--pages/index.tsx17
1 files changed, 0 insertions, 17 deletions
diff --git a/pages/index.tsx b/pages/index.tsx
deleted file mode 100644
index 2865e64..0000000
--- a/pages/index.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import AppBar from '@material-ui/core/AppBar';
-import Toolbar from '@material-ui/core/Toolbar';
-
-import { PressureIcon } from '../components/icons';
-import Loop from '../components/loop';
-
-export default function Index() {
- return <>
- <AppBar position='static' color='transparent' elevation={0}>
- <Toolbar>
- <PressureIcon />
- <h1>pressure</h1>
- </Toolbar>
- </AppBar>
- <Loop width={100} />
- </>;
-}