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 | |
parent | 5a0f2ed7af3bb804219c1be07969103572384ceb (diff) |
beginnings editor
Diffstat (limited to 'pages')
-rw-r--r-- | pages/_app.tsx | 3 | ||||
-rw-r--r-- | pages/index.tsx | 13 |
2 files changed, 13 insertions, 3 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx index bcab146..9d4c44d 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,7 +1,8 @@ import Head from 'next/head'; -import '../styles/globals.css'; import '../styles/colors.css'; +import '../styles/globals.css'; +import '../styles/paper.css'; export default function Blog({ Component, pageProps }) { return <> 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> </>; } - |