Merge pull request #62 from ethereum/add-favicon

feat: add favicon
This commit is contained in:
Paul Wackerow 2022-11-29 19:58:56 +01:00 committed by GitHub
commit a52c11135e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -43,7 +43,10 @@ export const PageMetadata: React.FC<Props> = ({ title, description, image }) =>
<meta name='twitter:description' content={description} />
{/* patch to force a cache invalidation of twitter's card bot */}
<meta name='twitter:image' content={`${ogImage}/#`} />
<link rel='icon' href='/images/favicon.png' />
{/* viewport */}
<meta name='viewport' content='width=device-width, initial-scale=1' />
{/* favicon */}
<link rel='icon' type='image/x-icon' href='/favicon.ico' />
</Head>
);
};