-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (38 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en" class="h-full">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<link
rel="apple-touch-icon"
href="/images/apple-touch-icon.png"
sizes="180x180"
/>
<link
rel="mask-icon"
href="/images/masked-icon.png"
color="#FFFFFF"
sizes="196x196"
/>
<meta
name="description"
content="Tiny and free app to help you breath and relax with breathing guide and techniques."
/>
<meta property="og:title" content="SereneBreath" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://SereneBreath.com" />
<meta property="og:image" content="/thumbnail.jpg" />
<meta name="theme-color" content="#e0f2fe" />
<meta
name="theme-color"
content="#0f1629"
media="(prefers-color-scheme: dark)"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SereneBreath</title>
</head>
<body class="h-full touch-pan-y">
<div id="root" class="h-full"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>