-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (26 loc) · 914 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0,viewport-fit=cover">
<link rel="stylesheet" href="styles.css">
<meta name="theme-color" content="#0F1130">
<meta property="og:title" content="R|P Sponsors">
<meta property="og:url" content="sponsor.reflectionsprojections.org">
<meta property="og:image" content="/2024_rp_logo.svg">
<meta property="og:description" content="Reflections|Projections Sponsors (2024)">
<title>R|P Sponsors</title>
<link rel="icon" type="image/x-icon" href="/2024_rp_logo.svg">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
<script>
let isCeiling = false;
window.addEventListener('wheel', (e) => {
const delta = e.deltaY;
document.documentElement.style.background = '#0F1130';
});
</script>
</html>