-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (71 loc) · 3.38 KB
/
index.html
File metadata and controls
71 lines (71 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Of Us Mods</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.png">
<link type="text/css" rel="stylesheet" href="static/styles/index.css?v=1">
</head>
<body>
<div class="container">
<header>
<nav>
<div class="nav-container">
<h1>All Of Us Mods</h1>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/starlight">Starlight</a></li>
<li><a href="/il2cpp">IL2CPP Tools</a></li>
<li><a href="/guides">Guides</a></li>
<li><a href="/privacy-policy">Privacy Policy</a></li>
</ul>
</div>
</nav>
</header>
<main>
<section id="features" class="features">
<div class="features-container">
<div class="feature-card">
<div class="project">
<h3>Starlight</h3>
<p>Android mod launcher for Among Us. Easy installation, mobile-optimized, regular updates.</p>
<a href="/starlight" class="btn primary">Get Starlight</a>
</div>
<div class="project">
<h3>Launchpad Reloaded</h3>
<p> A vanilla oriented, fun, and unique Among Us client mod. </p>
<a href="https://github.com/All-Of-Us-Mods/LaunchpadReloaded" class="btn primary">Get Launchpad Reloaded</a>
</div>
</div>
<div class="feature-card">
<h2>Tools & Guides</h2>
<div class="tool-cards">
<a href="https://github.com/All-Of-Us-Mods/MiraAPI" target="_blank" class="tool-card">
<h3>Mira API</h3>
<p>Modding API for Among Us.</p>
</a>
<a href="/il2cpp" class="tool-card">
<h3>IL2CPP Tools</h3>
<p>IL2CPP analysis and reverse engineering tools.</p>
</a>
<a href="/guides" class="tool-card">
<h3>Development Guides</h3>
<p>Guides for IL2CPP and Starlight development.</p>
</a>
</div>
</div>
<div class="feature-card">
<h2>Community</h2>
<p>Join our Discord for support, updates, and to connect with fellow modders.</p>
<iframe src="https://discord.com/widget?id=1333104345906020402&theme=dark" width="100%" height="300px" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
</div>
</section>
</main>
<footer>
<p>© 2026 All Of Us Mods. <a href="/privacy-policy">Privacy Policy</a></p>
</footer>
</div>
</body>
</html>