diff options
Diffstat (limited to 'src/pages/_app.tsx')
-rw-r--r-- | src/pages/_app.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index ba9372f..18692df 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -7,7 +7,7 @@ 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} /> + <Image src={logo} width={128} height={128} alt="logo" /> <h1>{"Eugene's Space"}</h1> </a> <Component {...pageProps} /> |