aboutsummaryrefslogtreecommitdiff
path: root/src/pages/_app.tsx
blob: 3dd15a21ddf5faf8b58bf0798b56c3c723972d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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} alt="logo" />
        <h1>{"Eugene's Space"}</h1>
      </a>
      <Component {...pageProps} />
    </>
  )
}

export default MyApp;