-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (56 loc) · 2.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Candidatos</title>
<meta
name="description"
content="Um mapa visual de qual distrito votou em qual candidato a presidente do Brasil 2022"
/>
<meta name="theme-color" content="#6930c3" />
<meta prefix="og: http://ogp.me/ns#" property="og:type" content="website" />
<meta prefix="og: http://ogp.me/ns#" property="og:url" content="https://brazil-map-candidates.vercel.app/" />
<meta prefix="og: http://ogp.me/ns#" property="og:title" content="Candidatos" />
<meta
prefix="og: http://ogp.me/ns#"
property="og:description"
content="Um mapa visual de qual distrito votou em qual candidato a presidente do Brasil 2022"
/>
<meta
prefix="og: http://ogp.me/ns#"
property="og:image"
content="https://github.com/Lucasmellof/candidatos/raw/main/screenshot.png"
/>
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://brazil-map-candidates.vercel.app/" />
<meta property="twitter:title" content="Candidatos" />
<meta
property="twitter:description"
content="Um mapa visual de qual distrito votou em qual candidato a presidente do Brasil 2022"
/>
<meta property="twitter:image" content="https://github.com/Lucasmellof/candidatos/raw/main/screenshot.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap" rel="stylesheet" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-995M3VRM42"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-995M3VRM42");
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>