This repository was archived by the owner on Apr 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-us.html
More file actions
86 lines (72 loc) · 4.34 KB
/
about-us.html
File metadata and controls
86 lines (72 loc) · 4.34 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="shortcut icon" type="x-icon" href="JavaLavalogo.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Java Lava</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
/* Mobile menu animation */
.mobile-menu-enter {
transform: scaleY(0);
transform-origin: top;
}
.mobile-menu-enter-active {
transform: scaleY(1);
transition: transform 0.2s ease-in-out;
}
</style>
</head>
<body class="bg-gradient-to-r from-blue-900 to-gray-900 text-white font-sans min-h-screen">
<!-- Navbar -->
<header class="bg-gradient-to-r from-blue-900 to-gray-900 shadow-md">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<a href="/" class="text-2xl font-bold text-white">Java Lava</a>
<nav class="hidden md:flex flex-wrap items-center justify-start gap-x-6 text-lg text-gray-300 ml-8">
<a href="/" class="nav-link show hover:text-white"><i class="fas fa-home"></i> Home</a>
<a href="/about-us.html" class="nav-link show hover:text-white"><i class="fas fa-info-circle"></i> About Us</a>
<a href="/Terms-of-service.html" class="nav-link show hover:text-white"><i class="fas fa-file-contract"></i> Terms of Service</a>
<a href="/Privacy-Policy.html" class="nav-link show hover:text-white"><i class="fas fa-user-shield"></i>Privacy Policy</a>
<a href="/partners.html" class="nav-link show hover:text-white"><i class="fas fa-handshake"></i> Partners</a>
<a href="https://top.gg/bot/1305190785536360519/vote" target="_blank" class="nav-link show hover:text-white"><i class="fas fa-vote-yea"></i> Vote</a>
<a href="https://betajavalava.phillsphanbh3.me/" target="_blank" class="nav-link show hover:text-white"><i class="fas fa-external-link-alt"></i> Beta Java Lava</a>
</nav>
<div class="md:hidden">
<button id="mobile-menu-button" class="text-white focus:outline-none">
☰
</button>
</div>
</div>
</div>
<div id="mobile-menu" class="md:hidden hidden px-4 pb-4 space-y-2 text-gray-300">
<a href="/" class="block hover:text-white">Home</a>
<a href="/about.html" class="block hover:text-white">About Us</a>
<a href="/Terms-of-service.html" class="block hover:text-white">Terms</a>
<a href="/Privacy-Policy.html" class="block hover:text-white">Privacy</a>
<a href="https://discord.gg/ZZbuatGPHr" class="block hover:text-white">Support</a>
<a href="https://discord.com/oauth2/authorize?client_id=1305190785536360519"
class="block hover:text-white">Invite</a>
</div>
<script src="https://javalava.statuspage.io/embed/script.js"></script>
</header>
<main class="max-w-4xl mx-auto px-6 py-12 text-center">
<h1 class="text-4xl font-extrabold mb-6">Where did Java Lava start and what is it about?</h1>
<p class="text-lg mb-4">Here at Java Lava, PhillsPhanbh3, Jeo, Ziggy, and Thus work hard on all things coding — we're passionate about it.</p>
<p class="text-lg mb-4">Java Lava started one day in November of 2024 as an ambitious idea to create a public, verified Discord bot.</p>
<p class="text-lg mb-4">PhillsPhanbh3 didn’t know where to begin, but with the help of a talented coder friend, Jeo, the project began to take off.</p>
<p class="text-lg mb-4">Since then, Java Lava has grown to over 50 servers and continues expanding with the development of new systems and features.</p>
<p class="text-lg mb-4">Right now, Java Lava is focused on moderation and automod functionality — but the goal is to evolve into an all-in-one bot like MEE6.</p>
<p class="text-lg mb-6 font-semibold text-blue-300">We're building something new, bold, and exciting — and you're a part of that journey.</p>
<p class="text-md text-gray-300">With gratitude, <br />The Java Lava Devs – PhillsPhanbh3, Jeo, & Ziggy</p>
</main>
<script>
const menuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
menuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
</script>
</body>
</html>