blob: a64a418d084b90db115f2a3283554776a02fece9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
|