Skip to content

added metatags, opengraph image and favicon #562

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 21 additions & 7 deletions client-web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,11 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.png" />
<link rel="icon" href="/ethora-favicon.png" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="apple-touch-icon" href="/ethora-favicon.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand All @@ -34,7 +30,25 @@
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<meta name="viewport" content="initial-scale=1, width=device-width" />
<title>Dappros Platform</title>
<!-- Primary Meta Tags -->
<title>Ethora - Web3 super app engine</title>
<meta name="title" content="Ethora - Web3 super app engine" />
<meta name="description" content="Ethora is a low-code and highly customisable web3 engine which means you can launch your own branded app into Appstore in no time." />
<link rel="canonical" href="https://beta.ethora.com/" />

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://beta.ethora.com/" />
<meta property="og:title" content="Ethora - Web3 super app engine" />
<meta property="og:description" content="Ethora is a low-code and highly customisable web3 engine which means you can launch your own branded app into Appstore in no time." />
<meta property="og:image" content="/temp-meta.png" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://beta.ethora.com/" />
<meta property="twitter:title" content="Ethora - Web3 super app engine" />
<meta property="twitter:description" content="Ethora is a low-code and highly customisable web3 engine which means you can launch your own branded app into Appstore in no time." />
<meta property="twitter:image" content="/temp-meta.png" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file added client-web/public/ethora-favicon.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 client-web/public/temp-meta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions client-web/src/pages/Routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,10 @@ export const Routes = () => {
{user.firstName && user.xmppPassword && <AppTopNav />}
{user.firstName && !user.xmppPassword && <AppTopNavOwner />}
<Helmet>
<title>{appConfig.displayName || "Dappros Platform"}</title>
<title>{appConfig.displayName || "Ethora - Web3 super app engine"}</title>
<meta
property="og:title"
content={appConfig.displayName || "Dappros Platform"}
content={appConfig.displayName || "Ethora - Web3 super app engine"}
/>
</Helmet>
<Switch>
Expand Down
Loading