-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (47 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
58 lines (47 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
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="/src/assets/logo.png" />
<!-- Responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light" />
<!-- SEO -->
<meta name="description" content="HackWeek 2026 - A week-long coding sprint for builders to ship real projects, compete, and win." />
<meta name="theme-color" content="#FFF8E7" />
<!-- Title -->
<title>HackWeek 2026</title>
<!-- Fonts (Neo Brutal + Headings option) -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Body font -->
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700;800&display=swap"
rel="stylesheet"
/>
<!-- Optional heading font (if you're using Grenze Gotisch later) -->
<link
href="https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@400;600;800&display=swap"
rel="stylesheet"
/>
<!-- Spline Viewer (IMPORTANT for 3D embeds) -->
<script
type="module"
src="https://unpkg.com/@splinetool/viewer/build/spline-viewer.js"
></script>
<!-- Prevent flash of unstyled scroll -->
<style>
html, body {
margin: 0;
padding: 0;
background: #fff8e7;
overflow-x: hidden;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>