Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
1import { BRAND_COLOR, STATIC_IMAGES_URL } from "@hey/data/constants";
2import { html } from "hono/html";
3
4const defaultMetadata = html`
5 <html>
6 <head>
7 <link rel="canonical" href="https://hey.xyz" />
8 <link rel="icon" href="https://hey.xyz/favicon.ico" />
9 <meta name="application-name" content="Hey" />
10 <meta name="theme-color" content="${BRAND_COLOR}" />
11 <meta name="description" content="A decentralized, and permissionless social media app built with Lens" />
12 <meta property="og:title" content="Hey" />
13 <meta property="og:type" content="website" />
14 <meta property="og:site_name" content="Hey" />
15 <meta property="og:image" content="${`${STATIC_IMAGES_URL}/og/cover.png`}" />
16 <meta name="twitter:card" content="summary_large_image" />
17 <meta name="twitter:site" content="@heydotxyz" />
18 <title>Hey</title>
19 </head>
20 <body>
21 <h1>Hey</h1>
22 <p>A decentralized, and permissionless social media app built with Lens</p>
23 </body>
24 </html>
25`;
26
27export default defaultMetadata;