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