-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 1.27 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
<!doctype html>
<html lang="en" class="h-full">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="theme-color" content="#000000" />
<meta name="apple-mobile-web-app-title" content="Yeah! ToDo" />
<meta name="application-name" content="Yeah! ToDo" />
<meta name="msapplication-TileColor" content="#000000" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png" />
<link rel="mask-icon" color="#000000" href="assets/safari-pinned-tab.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato&display=swap" />
<link rel="stylesheet" href="/src/index.css" />
<title>Yeah! ToDo</title>
</head>
<body class="h-full">
<div id="root" class="flex min-h-full flex-col"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>