aboutsummaryrefslogtreecommitdiff
path: root/pages/index.tsx
diff options
context:
space:
mode:
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} />
- </>;
-}