-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
26 lines (25 loc) · 983 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta
name="description"
content="A simple and efficient Todo List application built with React and UnoCSS."
/>
<meta property="og:title" content="Todo List" />
<meta
property="og:description"
content="A simple and efficient Todo List application built with React and UnoCSS."
/>
<meta property="og:image" content="/IMG_0765.png" />
<meta property="og:url" content="https://todo-list-vite-kappa.vercel.app/" />
<meta name="twitter:card" content="summary_large_image" />
<title>Todo List</title>
<link rel="icon" href="/vite.svg" type="image/x-icon" />
</head>
<body class="font-sans text-gray-950 bg-gray-50 dark:bg-gray-950 dark:text-gray-50">
<div id="app"></div>
<script type="module" src="./src/main.tsx" defer></script>
</body>
</html>