-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (40 loc) · 1.91 KB
/
index.html
File metadata and controls
41 lines (40 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/src/images/acm-hack-logo.svg"
/>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>UCLA ACM Hack</title>
<meta name="description" content="We are a student-run organization whose mission is to empower the community by providing the means to build amazing things and explore what is possible through code.">
<meta name="keywords" content="UCLA, ACM, ACM Hack, hackathon, coding, programming, workshops, computer science, student organization">
<meta name="author" content="UCLA ACM Hack">
<meta property="og:title" content="UCLA ACM Hack">
<meta property="og:description" content="We are a student-run organization whose mission is to empower the community by providing the means to build amazing things and explore what is possible through code.">
<meta property="og:image" content="src/images/hack-banner.png">
<meta property="og:site_name" content="UCLA ACM Hack">
<meta property="og:type" content="website">
<meta property="og:url" content="https://hack.uclaacm.com/">
<meta property="twitter:title" content="UCLA ACM Hack">
<meta property="twitter:description" content="We are a student-run organization whose mission is to empower the community by providing the means to build amazing things and explore what is possible through code.">
<meta property="twitter:image" content="src/images/hack-banner.png">
<meta name="twitter:card" content="summary_large_image">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script>
if ('scrollRestoration' in history) {
history.scrollRestoration = 'manual';
}
</script>
</body>
</html>