forked from ReflectionsProjections/sponsor-rp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (26 loc) · 921 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="#fba036">
<meta property="og:title" content="HackIllinois Sponsors">
<meta property="og:url" content="sponsor.hackillinois.org">
<meta property="og:image" content="/hackillinois-logo.svg">
<meta property="og:description" content="HackIllinois Sponsors (2025)">
<title>HackIllinois Sponsors</title>
<link rel="icon" type="image/x-icon" href="/hackillinois-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 = '#ffffff';
});
</script>
</html>