-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1'/>
<meta
name='description'
content='かわいい犬がタスクを食べてくれるWebアプリ'
/>
<meta
property='og:type'
content='website'
/>
<meta
property='og:url'
content='https://faveo-systema.net/to-dog-list'
/>
<meta
property='og:title'
content='To Dog List'
/>
<meta
property='og:image'
content='https://faveo-systema.net/to-dog-list/thumbnail.png'
/>
<meta
property='og:description'
content='かわいい犬がタスクを食べてくれるWebアプリ'
/>
<title>To Dog List</title>
<link rel='icon' href='./icon.ico'/>
</head>
<body class='
min-h-screen w-full self-center
text-black dark:text-white
bg-gradient-to-b from-slate-100 to-slate-200
dark:from-slate-800 dark:to-slate-900'
>
<main className="p-5 md:p-24 flex flex-col justify-evenly">
<div id='root' />
<script type='module' src='./src/main.tsx'></script>
</main>
</body>
</html>