-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (72 loc) · 3.77 KB
/
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
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
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bundle Project</title>
<link rel="icon" href="https://dl.isxander.dev/logos/bundle/v1/bundle.png">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="Bundle Project is a Minecraft Mod helper. It can automatically find the latest updates for all of your mods.">
<link rel="apple-touch-icon" content="https://dl.isxander.dev/logos/bundle/v1/bundle.png">
<meta name="og:type" content="website">
<meta name="og:title" content="Bundle Project">
<meta name="og:description" content="Bundle Project is a Minecraft Mod helper. It can automatically find the latest updates for all of your mods.">
<meta name="og:url" content="https://www.bundleproject.org">
<meta name="og:image" content="https://dl.isxander.dev/logos/bundle/v1/bundle.png">
<meta name="theme-color" content="#a85f00">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style/style.min.css">
<meta charset="UTF-8">
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js"></script>
<script src="script/darkmode.js"></script>
<script src="script/latestversion.js"></script>
<section>
<input type="checkbox" id="check">
<input type="checkbox" id="dark-mode-switch">
<header>
<a href="#" class="logo">
<img src="https://dl.isxander.dev/logos/bundle/v1/bundle.png" alt="logo"/>
<text>Bundle Project</text>
</a>
<div class="right-row">
<label for="dark-mode-switch" class="theme-btn">
<i class="fas fa-sun light-btn"></i>
<i class="fas fa-moon dark-btn"></i>
</label>
<div class="navigation">
<a href="https://www.bundleproject.org">Home</a>
<a href="https://github.com/orgs/BundleProject/repositories">Projects</a>
<a href="https://github.com/BundleProject">GitHub</a>
<a href="https://discord.gg/gzJDUt3a8w">Discord</a>
</div>
</div>
<label for="check" id="dropdown-btns">
<i class="fas fa-bars menu-btn"></i>
<i class="fas fa-times close-btn"></i>
</label>
</header>
<div class="content">
<div class="info">
<h2>Automatically<br><span>Update your Mods!</span></h2>
<p>
Bundle Project is a Minecraft Mod helper. It automatically looks for the latest updates for every
mod you have installed. Bundle does this by hooking into Minecraft before your mod loader even has
a chance to load.
</p>
<p>
Bundle consists of many subprojects such as the API.
There is also <a href="https://www.bundleproject.org/docs">documentation</a> you can check out
and use yourself!
</p>
<div class="buttons">
<a href="https://github.com/BundleProject/Installer/releases" id="download">Get the beta</a>
<div class="media-icons">
<a href="https://github.com/BundleProject"><i class="fab fa-github"></i></a>
<a href="https://discord.gg/gzJDUt3a8w"><i class="fab fa-discord"></i></a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>