2024-04-14 09:12:30 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>LE | Projects</title>
|
|
|
|
<link rel="icon" type="image/png" href="media/logo.png">
|
|
|
|
<link rel="stylesheet" href="media/style.css">
|
|
|
|
<link href="https://fonts.bunny.net/css?family=Space+Grotesk:wght@500&display=swap" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
<meta content="Lethal-Extended" property="og:title" />
|
|
|
|
<meta content="Lethal Company, but better." property="og:description" />
|
2024-05-10 00:30:39 +00:00
|
|
|
<meta content="https://lethal-extended.com" property="og:url" />
|
2024-05-28 05:19:08 +00:00
|
|
|
<meta content="https://lethal-extended.com/media/projects/LethalExtended.png" property="og:image" />
|
2024-04-14 09:12:30 +00:00
|
|
|
<meta content="#d81713" data-react-helmet="true" name="theme-color" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
|
|
<nav class="desktop_navbar">
|
|
|
|
<a href="index.html"><img class="desktop_navbar_logo_img" src="media/logo.png" width="96" height="64" alt="logo"></a>
|
|
|
|
<a href="https://merch.lethal-extended.com" class="desktop_navbar_link">Merch</a>
|
|
|
|
<a href="./aboutus.html" class="desktop_navbar_link">About Us</a>
|
|
|
|
<a href="./credits.html" class="desktop_navbar_link">Credits</a>
|
|
|
|
<a href="./projects.html" class="desktop_navbar_link">Projects</a>
|
2024-10-29 21:31:30 +00:00
|
|
|
<a class="desktop_navbar_link scroll">Current Version: 0.5.4</a>
|
2024-04-14 09:12:30 +00:00
|
|
|
<div class="desktop_navbar_link2_div">
|
2024-10-14 21:07:38 +00:00
|
|
|
<a href="./downloads.html" class="desktop_navbar_link2">Download</a>
|
2024-04-14 09:12:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
<div class="mobile_navbar">
|
|
|
|
<a href="#" class="mobile_navbar_logo_img_a"><img class="mobile_navbar_logo_img" src="media/logo.png" alt="logo"></a>
|
|
|
|
<div id="mobile_navbar_links">
|
|
|
|
<a class="mobile_navbar_link" onclick="mobile_navbar_link_hider()" href="https://merch.lethal-extended.com">Merch</a>
|
|
|
|
<a class="mobile_navbar_link" onclick="mobile_navbar_link_hider()" href="./aboutus.html">About Us</a>
|
|
|
|
<a class="mobile_navbar_link" onclick="mobile_navbar_link_hider()" href="./credits.html">Credits</a>
|
|
|
|
</div>
|
|
|
|
<div class="icon" onclick="mobile_navbar_link_hider()">
|
|
|
|
<i class="fa fa-bars"></i>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
function mobile_navbar_link_hider() {
|
|
|
|
var x = document.getElementById("mobile_navbar_links");
|
|
|
|
if (x.style.display === "flex") {
|
|
|
|
x.style.display = "none";
|
|
|
|
} else {
|
|
|
|
x.style.display = "flex";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
<div class="mainflex">
|
|
|
|
<div class="projects-background">
|
|
|
|
<a class="main1_logo_a" href="index.html">
|
|
|
|
</a>
|
|
|
|
<div class="main1_description">
|
|
|
|
</div>
|
|
|
|
<div class="main1_ipcopier_div">
|
|
|
|
</div>
|
|
|
|
<a href="#more" class="scroll">
|
|
|
|
</a>
|
|
|
|
<script>
|
|
|
|
const scrollLinks = document.querySelectorAll('.scroll');
|
|
|
|
scrollLinks.forEach(function(link) {
|
|
|
|
link.addEventListener('click', function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
const target = document.querySelector(link.getAttribute('href'));
|
|
|
|
const offsetTop = target.offsetTop;
|
|
|
|
window.scrollTo({
|
|
|
|
top: offsetTop,
|
|
|
|
behavior: 'smooth'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
<div id="more"></div>
|
|
|
|
<div class="main2">
|
|
|
|
<a class="headline">Mods</a>
|
|
|
|
<div class="main2_features_div">
|
|
|
|
<div class="main2_feature">
|
2024-05-14 07:01:44 +00:00
|
|
|
<center>
|
2024-04-14 09:12:30 +00:00
|
|
|
<img class="main2_feature_img" alt="Feature Image" src="media/projects/PenguCC-Kyrial-0.0.2.png.256x256_q95_crop.jpg">
|
2024-05-14 07:01:44 +00:00
|
|
|
<p></p>
|
2024-04-14 09:12:30 +00:00
|
|
|
<a class="main2_feature_headline">Kyrial</a>
|
2024-05-14 07:01:44 +00:00
|
|
|
<p></p>
|
|
|
|
<a href="https://thunderstore.io/c/lethal-company/p/PenguCC/Kyrial/"><img alt="thunderstore" src="https://cdn.galactiq.net/lethalextended/website/icons/thunderstore-compact_vector.svg"></a>
|
2024-04-14 09:12:30 +00:00
|
|
|
</div>
|
2024-05-14 07:01:44 +00:00
|
|
|
</center>
|
2024-06-17 10:12:49 +00:00
|
|
|
<div class="main2_feature">
|
|
|
|
<center>
|
|
|
|
<img class="main2_feature_img" alt="Feature Image" src="media/projects/BepInExGrafana.png">
|
|
|
|
<p></p>
|
|
|
|
<a class="main2_feature_headline">BepInEx Grafana</a>
|
|
|
|
<p></p>
|
|
|
|
<a href="https://thunderstore.io/c/content-warning/p/PenguCC/BepInEx_Grafana/"><img alt="thunderstore" src="https://cdn.galactiq.net/lethalextended/website/icons/thunderstore-compact_vector.svg"></a>
|
|
|
|
</div>
|
|
|
|
</center>
|
2024-04-14 09:12:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="main2">
|
|
|
|
<a class="headline">Modpacks</a>
|
|
|
|
<div class="main2_features_div">
|
|
|
|
<div class="main2_feature">
|
2024-05-05 19:37:05 +00:00
|
|
|
<center>
|
2024-04-29 08:44:37 +00:00
|
|
|
<img class="main2_feature_img" alt="Feature Image" src="media/projects/LethalExtended.png">
|
2024-05-05 19:37:05 +00:00
|
|
|
<p></p>
|
2024-05-10 00:30:39 +00:00
|
|
|
<a class="main2_feature_headline" href="https://lethal-extended.com/">Lethal-Extended</a>
|
2024-05-05 19:37:05 +00:00
|
|
|
<p></p>
|
2024-06-17 10:12:49 +00:00
|
|
|
<a href="https://lethal-extended.com"><img alt="website" src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/compact/documentation/website_vector.svg"></a>
|
2024-05-05 19:37:05 +00:00
|
|
|
<a href="https://thunderstore.io/c/lethal-company/p/PenguCC/LethalExtendedModManager/"><img alt="thunderstore" src="https://cdn.galactiq.net/lethalextended/website/icons/thunderstore-compact_vector.svg"></a>
|
|
|
|
</center>
|
2024-04-14 09:12:30 +00:00
|
|
|
</div>
|
2024-05-05 07:42:46 +00:00
|
|
|
<div class="main2_feature">
|
2024-05-05 19:37:05 +00:00
|
|
|
<center>
|
2024-05-05 07:42:46 +00:00
|
|
|
<img class="main2_feature_img" alt="Feature Image" src="media/projects/ContentExpansion.png">
|
2024-05-05 19:37:05 +00:00
|
|
|
<p></p>
|
2024-06-12 21:52:25 +00:00
|
|
|
<a class="main2_feature_headline" href="https://content-expansion.com">Content-Expansion</a>
|
2024-05-05 19:37:05 +00:00
|
|
|
<p></p>
|
2024-06-17 10:12:49 +00:00
|
|
|
<a href="https://content-expansion.com"><img alt="website" src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/compact/documentation/website_vector.svg"></a>
|
2024-05-06 19:24:18 +00:00
|
|
|
<a href="https://thunderstore.io/c/content-warning/p/PenguCC/Content_Expansion/"><img alt="thunderstore" src="https://cdn.galactiq.net/lethalextended/website/icons/thunderstore-compact_vector.svg"></a>
|
2024-05-05 19:37:05 +00:00
|
|
|
</center>
|
2024-05-05 07:42:46 +00:00
|
|
|
</div>
|
2024-04-14 09:12:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|