diff options
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> </>; } - |