-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-SP3JRT03GV"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-SP3JRT03GV');
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./src/assets/laptop.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Task Manager</title>
<meta
name="description"
content="Task Manager, A simple WebApp that tets you list down all your task and mark the completed task. Simple and Awesome UI Task Manager."
/>
<link rel="canonical" href="https://mytaskmanager.vercel.app" />
<link rel="canonical" href="https://todo.unrivalledking.dev" />
<meta name="author" content="UNRIVALLEDKING" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>