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" / >
< meta content = "https://lethal.pengucc.com" property = "og:url" / >
< meta content = "https://lethal.pengucc.com/media/logo.png" property = "og:image" / >
< 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 >
< script type = 'text/javascript' src = 'https://storage.ko-fi.com/cdn/widget/Widget_2.js' > < / script > < script type = 'text/javascript' > kofiwidget2 . init ( 'Support Us on Ko-fi' , '#292d2e' , 'N4N5CAT52' ) ; kofiwidget2 . draw ( ) ; < / script >
< 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-04-21 00:53:34 +00:00
< a class = "desktop_navbar_link scroll" > Current Version: 0.4.8< / a >
2024-04-14 09:12:30 +00:00
< div class = "desktop_navbar_link2_div" >
< a href = "./branches.html" class = "desktop_navbar_link2" > Download< / a >
< / 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://ko-fi.com/pengucc" > Donate< / a >
< 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" >
< img class = "main2_feature_img" alt = "Feature Image" src = "media/projects/PenguCC-Kyrial-0.0.2.png.256x256_q95_crop.jpg" >
< a class = "main2_feature_headline" > Kyrial< / a >
< a class = "main2_feature_text" href = "https://thunderstore.io/c/lethal-company/p/PenguCC/Kyrial/" > Thunderstore Page< / a >
< / div >
< / div >
< div class = "main2" >
< a class = "headline" > Modpacks< / a >
< div class = "main2_features_div" >
< div class = "main2_feature" >
< img class = "main2_feature_img" alt = "Feature Image" src = "media/projects/PenguCC-LethalExtendedModManager-0.4.6.png.256x256_q95_crop.png" >
< a class = "main2_feature_headline" > Lethal-Extended< / a >
< a class = "main2_feature_text" href = "https://www.nexusmods.com/lethalcompany/mods/108" > Nexus< / a >
< a class = "main2_feature_text" href = "https://thunderstore.io/c/lethal-company/p/PenguCC/LethalExtendedModManager/" > Thunderstore< / a >
< / div >
< / div >
< / div >
< / body >
< / html >