aboutsummaryrefslogtreecommitdiff
path: root/src/pages/_app.tsx
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-09-30 20:47:08 +0300
committereug-vs <eugene@eug-vs.xyz>2022-09-30 20:47:08 +0300
commit82de4ac15e6a942c3b004efad24a3dc8a4ab7edf (patch)
treed3559bccf7cfbf8f8bb56c407c77a3322819eb06 /src/pages/_app.tsx
parent30434e9bad2bf3b082b8dec193b1f2ccfa905f85 (diff)
downloadbenzin-next-82de4ac15e6a942c3b004efad24a3dc8a4ab7edf.tar.gz
feat: add custom Image component
Diffstat (limited to 'src/pages/_app.tsx')
-rw-r--r--src/pages/_app.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx
index a64a418..ba9372f 100644
--- a/src/pages/_app.tsx
+++ b/src/pages/_app.tsx
@@ -8,7 +8,7 @@ function MyApp({ Component, pageProps }: AppProps) {
<>
<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>
+ <h1>{"Eugene's Space"}</h1>
</a>
<Component {...pageProps} />
</>