diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-10-22 23:56:21 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-10-22 23:56:21 +0300 |
commit | a32257569190727e12c7e433b82e0a6da0fdc2f4 (patch) | |
tree | 7422d0b7e5625e8c32cb65ac74363277cb17009c | |
parent | 97b05f5579e863e3b6a03d3113236f64fe489583 (diff) | |
download | benzin-next-a32257569190727e12c7e433b82e0a6da0fdc2f4.tar.gz |
feat: use remote logo
-rw-r--r-- | public/eug-vs.png | bin | 32216 -> 0 bytes | |||
-rw-r--r-- | public/favicon.ico | bin | 15406 -> 0 bytes | |||
-rw-r--r-- | src/benzinConfig.ts | 1 | ||||
-rw-r--r-- | src/lib/types.ts | 1 | ||||
-rw-r--r-- | src/pages/_app.tsx | 7 | ||||
-rw-r--r-- | src/styles/globals.css | 5 |
6 files changed, 11 insertions, 3 deletions
diff --git a/public/eug-vs.png b/public/eug-vs.png Binary files differdeleted file mode 100644 index f853fed..0000000 --- a/public/eug-vs.png +++ /dev/null diff --git a/public/favicon.ico b/public/favicon.ico Binary files differdeleted file mode 100644 index efd76f1..0000000 --- a/public/favicon.ico +++ /dev/null diff --git a/src/benzinConfig.ts b/src/benzinConfig.ts index 12cdada..3f355ed 100644 --- a/src/benzinConfig.ts +++ b/src/benzinConfig.ts @@ -6,6 +6,7 @@ const benzinConfig: BenzinConfig = { CDN: 'https://git.eug-vs.xyz/eug-vs/eug-vs-xyz/plain/src', adapter: nginxAdapter, faviconPath: '/public/icon-64.png', + logoPath: '/public/eug-vs.png', emojiRootPath: '/emoji', cssPath: '/public/style.css?h=benzin-next-cdn' }; diff --git a/src/lib/types.ts b/src/lib/types.ts index a177dcd..e6bb22a 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -12,6 +12,7 @@ export interface BenzinConfig { adapter: Adapter; title: string; faviconPath: string; + logoPath: string; emojiRootPath: string; cssPath: string; } diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index 3dd15a2..715179b 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -1,13 +1,14 @@ -import logo from '../../public/eug-vs.png'; +import '../styles/globals.css'; import type { AppProps } from 'next/app'; import Image from 'next/future/image'; +import benzinConfig from '../benzinConfig'; 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> + <Image src={benzinConfig.CDN + benzinConfig.logoPath} width={128} height={128} alt="logo" /> + <h1>{benzinConfig.title}</h1> </a> <Component {...pageProps} /> </> diff --git a/src/styles/globals.css b/src/styles/globals.css new file mode 100644 index 0000000..7c6c955 --- /dev/null +++ b/src/styles/globals.css @@ -0,0 +1,5 @@ +@font-face { + font-family: "Bitter"; + src: url(../../public/fonts/Bitter-Regular.woff) format("truetype"); +} + |