generated from simerlec/vite-react-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (34 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="https://fireproof.storage/static/img/flame.svg" />
<meta name="viewport" content="width=1024, initial-scale=0.5" />
<meta property="og:image" content="https://epiphany.fireproof.storage/card.png">
<meta property="og:image:secure_url" content="https://epiphany.fireproof.storage/card.png">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="1450">
<meta property="og:image:height" content="736">
<meta property="og:type" content="product" />
<meta property="og:title" content="Auto Steps to the Epiphany" />
<meta property="og:description" content="GPT simulated customer interviews" />
<meta property="og:url" content="https://epiphany.fireproof.storage/" />
<meta property="og:site_name" content="Auto Steps to the Epiphany" />
<title>Auto Steps to the Epiphany</title>
<script>
if (
localStorage.theme === "dark" ||
(!("theme" in localStorage) &&
window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.classList.add("dark");
} else {
document.documentElement.classList.remove("dark");
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>