-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
26 lines (25 loc) · 941 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.0" />
<meta
name="description"
content="A simple and efficient Todo List application built with React and Tailwind CSS."
/>
<meta property="og:title" content="Todo List" />
<meta
property="og:description"
content="A simple and efficient Todo List application built with React and Tailwind CSS."
/>
<meta property="og:image" content="https://todo-list-vite-eight.vercel.app/IMG_0765.png" />
<meta property="og:url" content="https://todo-list-vite-eight.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>
<div id="app"></div>
<script type="module" src="./src/main.tsx" defer></script>
</body>
</html>