diff --git a/asdjklhfskjafhakfhueoyraehfjkcnjkdscnsjakdreuoiwefh/atlas.html b/asdjklhfskjafhakfhueoyraehfjkcnjkdscnsjakdreuoiwefh/atlas.html
index 3b30854..ba17813 100644
--- a/asdjklhfskjafhakfhueoyraehfjkcnjkdscnsjakdreuoiwefh/atlas.html
+++ b/asdjklhfskjafhakfhueoyraehfjkcnjkdscnsjakdreuoiwefh/atlas.html
@@ -10761,6 +10761,20 @@
Not-Games
anchor.style.display = 'block';
newLinks.push(anchor);
});
+ // 3kh0 lite
+ fetch("https://lite.3kh0.net/config/games.json")
+ .then((response) => response.json())
+ .then((data) => {
+ data.forEach((project) => {
+ const anchor = document.createElement('a');
+ anchor.href = 'https://lite.3kh0.net/'+project.link;
+ anchor.textContent = project.title + `~3kh0lite`;
+ anchor.style.display = 'block';
+ newLinks.push(anchor);
+
+ })})
+ .catch((error) => console.error("Error:", error));
+ // end of link dbs
const allLinks = sortLinksAlphabetically(newLinks);
const gamesList = document.getElementById('gamesList');
allLinks.forEach(link => {