Skip to content

Commit 31d16b7

Browse files
SystemThreatclaude
andcommitted
Add Connect button to all pages, eyebrow text to white
- Add desktop Connect button + mobile menu Connect to whoami, contact, careers - Move mobile menus to end of body with body.menu-open toggle - Change page-eyebrow-text color from cyan to white across all 14 pages Co-Authored-By: systemthreat <systemthreat@users.noreply.github.com> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent bab7847 commit 31d16b7

14 files changed

Lines changed: 12260 additions & 52 deletions

careers.html

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@
898898
font-size: 11px;
899899
letter-spacing: 0.5em;
900900
text-transform: uppercase;
901-
color: var(--cyan);
901+
color: #ffffff;
902902
}
903903

904904
.page-title {
@@ -2421,21 +2421,6 @@
24212421
<div class="grid-overlay"></div>
24222422
<div class="vignette"></div>
24232423

2424-
<!-- Mobile Menu -->
2425-
<div class="mobile-menu" id="mobileMenu">
2426-
<button class="mobile-menu-close" onclick="closeMobileMenu()">
2427-
<svg viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2">
2428-
<path d="M18 6L6 18M6 6l12 12"/>
2429-
</svg>
2430-
</button>
2431-
<a href="index.html">Home</a>
2432-
<a href="whoami.html">WhoAmI</a>
2433-
<a href="index.html#loselijo">Los Elijo</a>
2434-
<a href="index.html#products">Products</a>
2435-
<a href="contact.html">Contact</a>
2436-
<a href="careers.html">Careers</a>
2437-
</div>
2438-
24392424
<!-- Application Modal -->
24402425
<div class="modal-overlay" id="applicationModal">
24412426
<div class="modal">
@@ -2694,6 +2679,7 @@ <h3 class="success-title">Application Submitted</h3>
26942679
<li><a href="contact.html" class="sound-hover">Contact</a></li>
26952680
<li><a href="careers.html" class="sound-hover active">Careers</a></li>
26962681
</ul>
2682+
<a href="https://app.skyknet.com" class="connect-btn desktop sound-hover">Connect</a>
26972683
<button class="mobile-menu-btn" onclick="openMobileMenu()" aria-label="Open menu">
26982684
<span></span>
26992685
<span></span>
@@ -3986,12 +3972,14 @@ <h3 class="job-title">Product Design Intern</h3>
39863972

39873973
function openMobileMenu() {
39883974
document.getElementById('mobileMenu').classList.add('visible');
3975+
document.body.classList.add('menu-open');
39893976
document.body.style.overflow = 'hidden';
39903977
playClickSound();
39913978
}
39923979

39933980
function closeMobileMenu() {
39943981
document.getElementById('mobileMenu').classList.remove('visible');
3982+
document.body.classList.remove('menu-open');
39953983
document.body.style.overflow = '';
39963984
playClickSound();
39973985
}
@@ -4379,5 +4367,19 @@ <h3 class="job-title">Product Design Intern</h3>
43794367

43804368
document.querySelectorAll('.reveal').forEach(el => observer.observe(el));
43814369
</script>
4370+
4371+
<!-- Mobile Menu (last in body for correct stacking) -->
4372+
<div class="mobile-menu" id="mobileMenu">
4373+
<button class="mobile-menu-close" onclick="closeMobileMenu()">
4374+
<svg viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2"><path d="M18 6L6 18M6 6l12 12"/></svg>
4375+
</button>
4376+
<a href="whoami.html">WhoAmI</a>
4377+
<a href="index.html#loselijo" onclick="closeMobileMenu()">Los Elijo</a>
4378+
<a href="index.html#products" onclick="closeMobileMenu()">Products</a>
4379+
<a href="index.html#credentials" onclick="closeMobileMenu()">Credentials</a>
4380+
<a href="contact.html">Contact</a>
4381+
<a href="careers.html">Careers</a>
4382+
<a href="https://app.skyknet.com" class="connect-btn" onclick="closeMobileMenu()">Connect</a>
4383+
</div>
43824384
</body>
43834385
</html>

0 commit comments

Comments
 (0)