This commit is contained in:
𓍼 2025-06-08 17:03:38 -05:00
parent 7beb269867
commit 9f7d0d207b
4 changed files with 7 additions and 7 deletions

View File

@ -3,7 +3,7 @@ import http from 'http';
const endpoints = [ const endpoints = [
'http://localhost:3000/', 'http://localhost:3000/',
'http://localhost:3000/g', 'http://localhost:3000/g',
'http://localhost:3000/a' 'http://localhost:3000/s'
]; ];
function httpGet(url, timeout = 5000) { function httpGet(url, timeout = 5000) {
@ -44,7 +44,7 @@ async function warm(retries = 2) {
if (failed.length) { if (failed.length) {
console.warn(`[WARMUP] Some endpoints failed to warm:`, failed); console.warn(`[WARMUP] Some endpoints failed to warm:`, failed);
} else { } else {
console.log('[WARMUP] All endpoints warmed successfully'); console.log('[WARMUP] All endpoints warmed up successfully');
} }
} }

View File

@ -126,7 +126,7 @@
</div> </div>
<div id="discord"> <div id="discord">
<a class="hover-link" href="https://discord.gg/ire" target="_blank" rel="noopener noreferrer"> <a class="hover-link" href="https://discord.gg/dJvdkPRheV" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-discord"></i> Discord <i class="fa-brands fa-discord"></i> Discord
</a> </a>
</div> </div>

View File

@ -55,7 +55,7 @@ body {
color: #ffffff; color: #ffffff;
display: inline-block; display: inline-block;
text-align: left; text-align: left;
margin: 1px 75px 0 10px; margin: 1px 79px 0 10px;
white-space: nowrap; white-space: nowrap;
cursor: default; cursor: default;
transition: all 0.3s ease; transition: all 0.3s ease;
@ -114,8 +114,8 @@ body {
.home-navbar i { .home-navbar i {
color: #ffffff; color: #ffffff;
margin-right: -19px; margin-right: -16px;
margin-left: 119px; margin-left: 115px;
} }
.navbar { .navbar {

View File

@ -19,7 +19,7 @@
const overlay = document.createElement('div'); overlay.id='wv-overlay'; const overlay = document.createElement('div'); overlay.id='wv-overlay';
overlay.innerHTML = ` overlay.innerHTML = `
<div id="wv-card"> <div id="wv-card">
<h2><i class="fas fa-shield-alt"></i> Verifying Browser</h2> <h2><i class="fas fa-shield-alt"></i> Verifying Your Browser...</h2>
<div id="wv-progress"><div id="wv-bar"></div></div> <div id="wv-progress"><div id="wv-bar"></div></div>
<div id="wv-info"></div> <div id="wv-info"></div>
</div> </div>