-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (36 loc) · 1.82 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="description" content="Gather and analyze feedback from multiple sources all in one place. Get insights from your customers and build what really matters to them.">
<meta property="og:title" content="Astuto | Customer feedback tool">
<meta property="og:url" content="https://astuto.io/">
<meta property="og:description" content="Gather and analyze feedback from multiple sources all in one place. Get insights from your customers and build what really matters to them.">
<meta property="og:image" content="https://astuto.io/featured-image.png?v=2"> <!-- v used to avoid Whatsapp/Facebook CDN caching; update v when updating the image -->
<meta property="og:type" content="website">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Astuto | Customer feedback tool</title>
</head>
<body class="font-inter antialiased bg-white text-gray-900 tracking-tight">
<noscript>You need to enable JavaScript to run this app.</noscript>
<!-- Scroll to the provided hash on page load -->
<script>
function scrollToHash() {
const hash = window.location.hash;
if (hash) {
setTimeout(() => {
const element = document.querySelector(hash);
if (element) element.scrollIntoView({ behavior: "smooth" });
}, 10);
}
}
window.addEventListener('load', scrollToHash);
</script>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<!-- Analytics -->
<script data-goatcounter="https://astuto.goatcounter.com/count" src="//gc.zgo.at/count.js"></script>
</body>
</html>