-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (62 loc) · 3.4 KB
/
index.html
File metadata and controls
75 lines (62 loc) · 3.4 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en" class="font-normal text-neutral-800 bg-neutral-950">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="theme-color" content="#0a0a0a">
<link rel="icon" href="/Ripple/assets/images/icons/icon-192x192.png" type="image/png" />
<title>Ripple - Music webapp</title>
<!-- Manifests -->
<link rel="canonical" href="https://nikhil-sha.github.io/Ripple/">
<link rel="manifest" type="application/json" href="manifest.json">
<meta name="application-name" content="Ripple">
<meta name="apple-mobile-web-app-title" content="Ripple">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="mobile-web-app-capable" content="yes">
<!-- Tailwind -->
<script src="./modules/[email protected]/Tailwind.js" type="text/javascript" charset="utf-8"></script>
<script src="./tailwind.config.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="./app.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body class="bg-neutral-950 text-neutral-200 h-screen w-screen select-none">
<div id="react-app" class="h-dvh w-full">
<div class="relative h-full w-full flex flex-col gap-8 justify-center items-center">
<div id="timeout" class="hidden w-fit flex flex-col gap-1 justify-center items-center">
<p class="text-sm text-neutral-200 font-normal">It is taking longer than expected.</p>
<button class="text-sm text-neutral-800 px-2 py-1 rounded-lg bg-yellow-400" onclick="window.location.reload()">Reload!</button>
<script>
let timeoutMsg = document.getElementById("timeout");
setTimeout(() => {
if (timeoutMsg) timeoutMsg.classList.remove("hidden");
}, 10000);
</script>
</div>
<div class="relative flex justify-center items-center">
<img class="absolute top-1 size-14 rounded-full" src="./assets/images/icons/icon-512x512.png" alt="Ripple logo" />
<div class="size-16 mb-6">
<svg class="w-full h-full animate-spin" viewBox="0 0 50 50">
<circle class="stroke-yellow-400 animate-dash" cx="25" cy="25" r="23" fill="none" stroke-width="2" stroke-linecap="round"></circle>
</svg>
</div>
</div>
<div class="max-w-64">
<p id="quote" class="text-xs text-neutral-200"></p>
<i id="author" class="text-xs block text-right text-neutral-400 font-bold"></i>
</div>
<p class="absolute bottom-5 text-center text-sm font-normal">
<i class="fa-solid fa-mobile mr-1.5"></i>Best on Mobile Devices
</p>
</div>
</div>
<aside id="popupContainer" role="status" aria-live="polite" class="fixed bottom-4 z-50 flex flex-col items-center gap-2 h-fit w-full pointer-events-none">
</aside>
<!-- Scripts -->
<script src="./global.js"></script>
<script defer src="./modules/[email protected]/system.js"></script>
<script defer src="./config.js"></script>
</body>
</html>