diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-09-17 15:24:50 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-09-17 15:24:50 +0300 |
commit | 2a287f317a51f5f02b643af0acf2733cadbb8081 (patch) | |
tree | 725983c2fc98dfee2b7ed826f4fccb3bee6ca45a /src/pages/_app.tsx | |
download | benzin-next-2a287f317a51f5f02b643af0acf2733cadbb8081.tar.gz |
feat: initial commit
Diffstat (limited to 'src/pages/_app.tsx')
-rw-r--r-- | src/pages/_app.tsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx new file mode 100644 index 0000000..191f276 --- /dev/null +++ b/src/pages/_app.tsx @@ -0,0 +1,18 @@ +import "../styles/globals.css"; +import logo from '../../public/eug-vs.png'; +import type { AppProps } from "next/app"; +import Image from 'next/future/image'; + +function MyApp({ Component, pageProps }: AppProps) { + return ( + <> + <a href="/" style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', textDecoration: 'none', marginBottom: '12px' }}> + <Image src={logo} width={128} height={128} /> + <h1>Eugene's Space</h1> + </a> + <Component {...pageProps} /> + </> + ) +} + +export default MyApp; |