AkshayCoder48/OnyxAgent-storage / onyx /test-fans-tab.html
AkshayCoder48's picture
download
raw
2.16 kB
<!DOCTYPE html>
<html>
<head>
<title>Fans Tab Test</title>
<style>
body { margin: 0; font-family: sans-serif; background: #1a1a2e; color: white; }
.nav-bar { display: flex; flex-wrap: wrap; gap: 5px; background: #16213e; padding: 10px; justify-content: center; }
.nav-btn { background: none; border: none; color: #aaa; font-size: 0.7rem; padding: 8px 5px; cursor: pointer; text-align: center; min-width: 50px; }
.nav-btn:hover { color: white; }
.highlight { color: #ff6b6b !important; }
h1 { text-align: center; padding: 20px; }
.info { max-width: 600px; margin: 20px auto; padding: 20px; background: #16213e; border-radius: 10px; }
</style>
</head>
<body>
<h1>๐Ÿ—ณ๏ธ Reverse Recruitment - Navigation Test</h1>
<div class="info">
<p><strong>Check the navigation below!</strong> The "Fans" tab should be visible with a pink/red color.</p>
</div>
<div class="nav-bar">
<button class="nav-btn active" onclick="switchTab('studio')"><span>๐Ÿ </span>Studio</button>
<button class="nav-btn" onclick="switchTab('roster')"><span>๐Ÿ‘ฏ</span>Roster</button>
<button class="nav-btn" onclick="switchTab('production')"><span>๐ŸŽฌ</span>Shoot</button>
<button class="nav-btn" onclick="switchTab('personal')"><span>๐ŸŽจ</span>Dev's</button>
<button class="nav-btn" onclick="switchTab('manual')"><span>โœ๏ธ</span>Manual</button>
<button class="nav-btn" onclick="switchTab('auction')"><span>๐Ÿ”จ</span>Auction</button>
<button class="nav-btn" onclick="switchTab('gallery')"><span>๐Ÿ–ผ๏ธ</span>Archives</button>
<button class="nav-btn" onclick="switchTab('fanbids')" style="color:#ff6b6b;"><span>๐Ÿ—ณ๏ธ</span>Fans</button>
</div>
<script>
document.querySelectorAll(".nav-btn").forEach(btn => {
btn.addEventListener("click", () => {
document.querySelectorAll(".nav-btn").forEach(b => b.style.color = "#aaa");
btn.style.color = "#ff6b6b";
alert("Clicked: " + btn.textContent.trim() + "\n\nIn the full game, this would open the Fans tab!");
});
});
</script>
</body>
</html>

Xet Storage Details

Size:
2.16 kB
ยท
Xet hash:
1ad44db45799e7166d68c6ec49b6f2cb74c9beb7b83947aea23f92cafde4c19d

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.