-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 1.59 KB
/
index.html
File metadata and controls
47 lines (43 loc) · 1.59 KB
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
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A roadmap with a path leading to a destination"
/>
<meta
name="keywords"
content="Roadmap, Task Planner, Self-Improvement, Personal Growth, Life Planning, Micro Planner"
/>
<meta name="author" content="CaffDev" />
<link rel="icon" href="/logo.svg" type="image/x-icon" />
<!-- Modern browsers (PNG format) -->
<link rel="icon" type="image/png" href="/logo.svg" sizes="32x32" />
<link rel="icon" type="image/png" href="/logo.svg" sizes="16x16" />
<!-- Apple/Safari Touch Icons -->
<link rel="apple-touch-icon" href="/logo.svg" />
<!-- Primary Open Graph Image (Recommended: 1200x630 pixels) -->
<meta property="og:image" content="/og.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="A roadmap with a path leading to a destination"
/>
<!-- Logo (Square format recommended: 300x300 pixels) -->
<meta property="og:logo" content="/og.png" />
<meta property="og:logo:width" content="300" />
<meta property="og:logo:height" content="300" />
<!-- Twitter Card (for Twitter sharing) -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="/og.png" />
<title>BitPath</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>