-
Notifications
You must be signed in to change notification settings - Fork 91
/
index.html
55 lines (54 loc) · 2.41 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=0.8, user-scalable=no" />
<meta name="theme-color" content="#232e58" />
<meta name="description" content="Todo App with many features by maciekt07" />
<meta name="author" content="github.com/maciekt07" />
<meta name="robots" content="index, follow" />
<link rel="icon" type="image/svg+xml" href="logo.svg" />
<link rel="mask-icon" href="pwa/logoMaskable.png" color="#171D34" />
<link rel="apple-touch-icon" href="logo512.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=Heebo&family=Lato:ital@0;1&family=Lilita+One&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,500;1,600&display=swap"
rel="stylesheet"
/>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://react-cool-todo-app.netlify.app/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Todo App By maciekt07" />
<meta property="og:description" content="Todo App with many features by maciekt07" />
<meta
property="og:image"
content="https://github.com/maciekt07/TodoApp/blob/main/src/assets/logo256.png?raw=true"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="react-cool-todo-app.netlify.app" />
<meta property="twitter:url" content="https://react-cool-todo-app.netlify.app/" />
<meta name="twitter:title" content="Todo App By maciekt07" />
<meta name="twitter:description" content="Todo App with many features by maciekt07" />
<meta
name="twitter:image"
content="https://github.com/maciekt07/TodoApp/blob/main/src/assets/logo256.png?raw=true"
/>
<title>Todo App</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KJSMHC1ETH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-KJSMHC1ETH");
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>