aboutsummaryrefslogtreecommitdiff
path: root/src/pages/_app.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/_app.tsx')
-rw-r--r--src/pages/_app.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx
index 715179b..d295175 100644
--- a/src/pages/_app.tsx
+++ b/src/pages/_app.tsx
@@ -1,14 +1,14 @@
import '../styles/globals.css';
import type { AppProps } from 'next/app';
import Image from 'next/future/image';
-import benzinConfig from '../benzinConfig';
+import config from '../config';
function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<a href="/" style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', textDecoration: 'none', marginBottom: '12px' }}>
- <Image src={benzinConfig.CDN + benzinConfig.logoPath} width={128} height={128} alt="logo" />
- <h1>{benzinConfig.title}</h1>
+ <Image src={config.CDN + config.paths.logo} width={128} height={128} alt="logo" />
+ <h1>{config.title}</h1>
</a>
<Component {...pageProps} />
</>