-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 2.01 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- manifes json -->
<link rel="manifest" href="/manifest.json" />
<!-- Icons -->
<!-- <link rel="icon" type="image/jpeg" href="/pageLogo.jpeg" />
<link rel="icon" type="image/png" href="/IMG_5424.png" /> -->
<link
rel="icon"
type="image/png"
href="/android/android-launchericon-48-48.png"
/>
<link
rel="icon"
type="image/png"
href="/android/android-launchericon-72-72.png"
/>
<link
rel="icon"
type="image/png"
href="/android/android-launchericon-96-96.png"
/>
<link
rel="icon"
type="image/png"
href="/android/android-launchericon-144-144.png"
/>
<link
rel="icon"
type="image/png"
href="/android/android-launchericon-192-192.png"
/>
<link
rel="icon"
type="image/png"
href="/android/android-launchericon-512-512.png"
/>
<!-- ios icons -->
<link rel="apple-touch-icon" href="/ios/144.png" />
<link rel="apple-touch-icon" href="/ios/192.png" />
<link rel="apple-touch-icon" href="/ios/256.png" />
<link rel="apple-touch-icon" href="/ios/512.png" />
<link rel="apple-touch-icon" href="/ios/1024.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ffffff" />
<title>Vibie</title>
<meta
name="description"
content="Vibie, A dynamic social media platform designed to connect users and let them share moments from their lives! Whether you're showcasing your creativity, capturing life’s moments, or just vibing with friends, Vibie is your go-to platform. Join the #vibe-tribe."
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="#ffffff" />
<meta name="apple-mobile-web-app-title" content="Vibie" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>