Skip to content

Commit f08f425

Browse files
feat: add meta tags for SEO and social sharing (#54)
* feat: add meta tags for SEO and social sharing * feat: integrate Mava Widget and Hotjar for enhanced user engagement and analytics * feat: update Open Graph and Twitter meta tags to use local image paths
1 parent 7ab7d5b commit f08f425

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

index.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,52 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5+
<meta name="description" content="iExec Explorer - Discover, search and analyze iExec assets, deals, tasks, and more." />
6+
<meta name="robots" content="index, follow" />
7+
<link rel="canonical" href="https://explorer.iex.ec/" />
8+
<!-- Theme color for mobile browsers -->
9+
<meta name="theme-color" content="#ffffff" />
10+
<!-- Open Graph / Facebook -->
11+
<meta property="og:type" content="website" />
12+
<meta property="og:url" content="https://explorer.iex.ec/" />
13+
<meta property="og:title" content="iExec Explorer" />
14+
<meta property="og:description" content="Discover, search and analyze iExec assets, deals, tasks, and more." />
15+
<meta property="og:image" content="/src/assets/og-image.png" />
16+
<!-- Twitter -->
17+
<meta name="twitter:card" content="summary_large_image" />
18+
<meta name="twitter:url" content="https://explorer.iex.ec/" />
19+
<meta name="twitter:title" content="iExec Explorer" />
20+
<meta name="twitter:description" content="Discover, search and analyze iExec assets, deals, tasks, and more." />
21+
<meta name="twitter:image" content="/src/assets/og-image.png" />
22+
<!-- End of useful meta tags -->
523
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.png" />
624
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
725
<title>iExec Explorer</title>
26+
<!-- Mava Widget -->
27+
<script defer src="https://widget.mava.app" widget-version="v2" id="MavaWebChat" enable-sdk="false" data-token="8e4e10aad5750451e8726768e8c639dae54f461beeb176f5ebd687371c9390f2"></script>
28+
<script>
29+
(function (h, o, t, j, a, r) {
30+
h.hj =
31+
h.hj ||
32+
function () {
33+
(h.hj.q = h.hj.q || []).push(arguments);
34+
};
35+
h._hjSettings = { hjid: 3518387, hjsv: 6 };
36+
a = o.getElementsByTagName('head')[0];
37+
r = o.createElement('script');
38+
r.async = 1;
39+
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
40+
a.appendChild(r);
41+
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
42+
</script>
43+
<!-- Google Tag Manager -->
44+
<script>
45+
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
46+
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
47+
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
48+
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
49+
})(window,document,'script','dataLayer','GTM-P7KSD4T');
50+
</script>
851
</head>
952
<body>
1053
<div id="root"></div>

src/assets/og-image.png

935 KB
Loading

0 commit comments

Comments
 (0)