aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
Diffstat (limited to 'pages')
-rw-r--r--pages/_app.tsx1
-rw-r--r--pages/editor.tsx21
-rw-r--r--pages/index.tsx17
3 files changed, 22 insertions, 17 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx
index fecbad0..7bb0076 100644
--- a/pages/_app.tsx
+++ b/pages/_app.tsx
@@ -1,6 +1,7 @@
import Head from 'next/head';
import '../styles/colors.css';
+import '../styles/editor.css';
import '../styles/globals.css';
import '../styles/keyframes.css';
import '../styles/paper.css';
diff --git a/pages/editor.tsx b/pages/editor.tsx
new file mode 100644
index 0000000..3377149
--- /dev/null
+++ b/pages/editor.tsx
@@ -0,0 +1,21 @@
+import AppBar from '@material-ui/core/AppBar';
+import Toolbar from '@material-ui/core/Toolbar';
+
+import { PressureIcon } from '../components/icons';
+
+export default function Index() {
+ return <>
+ <div className='appGrid posabs a0'>
+ <AppBar position='static' color='transparent' elevation={0}>
+ <Toolbar>
+ <PressureIcon />
+ <h1>pressure</h1>
+ </Toolbar>
+ </AppBar>
+ <div className='settings'></div>
+ <div className='viewer'></div>
+ <div className='tools'></div>
+ <div className='timeline'></div>
+ </div>
+ </>;
+}
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} />
- </>;
-}