Skip to content

Commit

Permalink
feat: add title & favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
izayl committed Apr 16, 2021
1 parent 2bbb5aa commit 0cf3d8d
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 2 deletions.
15 changes: 14 additions & 1 deletion pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,20 @@ export default class MyDocument extends Document {
render() {
return (
<Html>
<Head />
<Head>
<title>EVM Box</title>
<meta name="description" content="use EVM Compatible Network with ease." />
<meta name="keywords" content="ETH,EVM,EVM Compatible Network,Network,Blockchain,chain" />
<meta property="og:title" content="EVM Box"/>
<meta property="og:description" content="use EVM Compatible Network with ease."/>
<meta property="og:image" content="/images/favicon.svg"/>
<meta property="og:type" content="website" />
<link rel="shortcut icon" href="/images/favicon.ico" />
<link rel="icon" sizes="16x16 32x32" href="/images/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png"/>
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png"/>
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png" />
</Head>
<body>
<Main />
<NextScript />
Expand Down
3 changes: 2 additions & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ export const Home: React.FC<HomeProps> = ({ chains }) => {
<div className="chainlist">
<Page>
<Page.Header>
<h2>Add Network</h2>
<h2>EVM Box</h2>
<p>Use Your favorite EVM Compatible Network</p>
</Page.Header>
<Input width="100%" icon={<Search />} placeholder="Search Network" onChange={onSearch} clearable />
<Divider />
Expand Down
Binary file added public/images/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicon.ico
Binary file not shown.
3 changes: 3 additions & 0 deletions public/images/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

1 comment on commit 0cf3d8d

@vercel
Copy link

@vercel vercel bot commented on 0cf3d8d Apr 16, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.