-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (41 loc) · 1.83 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
<!doctype html>
<html
lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#121212" />
<title>Emotion Link</title>
<link rel="icon" href="/icons/favicon16x16.ico" sizes="16x16" type="image/x-icon">
<link rel="icon" href="/icons/favicon32x32.ico" sizes="32x32 48x48" type="image/x-icon">
<link rel="icon" href="/icons/favicon64x64.ico" sizes="64x64" type="image/x-icon">
<link rel="icon" href="/icons/favicon96x96.ico" sizes="96x96" type="image/x-icon">
<link rel="icon" href="/icons/favicon128x128.ico" sizes="128x128 512x512 8192x8192 32768x32768" type="image/x-icon">
<meta name="title" property="og:title" content="Emotion Link" />
<meta name="type" property="og:type" content="website" />
<meta name="url" property="og:url" content="https://emotion-link.vercel.app" />
<meta name="description" property="og:description" content="Emotion Link is a web app designed to help users organize and understand their emotion provides a visual representation of life events and interactions" />
<meta name="image" property="og:image" content="/screenshots/desktop-demo-1.png" />
<meta name="image" property="og:image:width" content="1920" />
<meta name="image" property="og:image:height" content="1080" />
<style>
::-webkit-scrollbar {
width: .6em;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
border-radius: 8px;
background-color: darkgrey;
outline: 1px solid slategrey;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>