Skip to content

Commit

Permalink
feat: meta tags and favicon for html
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodes05 committed Aug 25, 2023
1 parent 8223571 commit 64a3c0d
Showing 1 changed file with 38 additions and 2 deletions.
40 changes: 38 additions & 2 deletions apps/oeth/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,54 @@
<head>
<meta charset="utf-8" />
<title>Oeth</title>
<meta
name="description"
content="An ETH-pegged token that earns yield from all forms of staking"
/>
<base href="/" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />

<!-- favicon -->
<link rel="shortcut icon" href="/images/favicon.svg" type="image/x-icon" />
<link rel="icon" href="/images/favicon.svg" type="image/x-icon" />

<!-- Inter font -->
<link rel="preconnect" href="https://rsms.me/" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
<!-- -->

<!-- Sailec font -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/typeface-sailec@1.0.0/index.min.css"
/>

<!-- meta tags for social -->

<meta property="og:url" content="https://oeth.com" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Origin Ether (OETH)" />
<meta
property="og:description"
content="An ETH-pegged token that earns yield from all forms of staking"
/>
<meta
name="og:image"
content="https://cmsmediaproduction.s3.amazonaws.com/thumbnail_oeth_meta_ed53499f08.png"
/>

<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@originprotocol" />
<meta name="twitter:title" content="Origin Ether (OETH)" />
<meta
name="twitter:description"
content="An ETH-pegged token that earns yield from all forms of staking"
/>
<meta
name="twitter:image"
content="https://cmsmediaproduction.s3.amazonaws.com/thumbnail_oeth_meta_ed53499f08.png"
/>
<!-- end meta tags -->
</head>
<body>
<div id="root"></div>
Expand Down

0 comments on commit 64a3c0d

Please sign in to comment.