Files
web7sys/public/components/header.html
2024-11-15 12:31:05 +01:00

30 lines
1.1 KiB
HTML

<header>
<div class="header-content">
<div class="logo-container">
<div class="logo-text">
<a href="index.html"><span>7</span><span>S</span><span>Y</span><span>S</span></a>
</div>
</div>
<nav class="nav-menu">
<a href="index.html" id="start-link">Home</a>
<a href="#services" id="expertise-link">Expertise</a>
<a href="#contact" id="contact-link">Kontakt</a>
<button class="theme-toggle" aria-label="Theme Toggle">
<i class="fas fa-moon"></i>
</button>
</nav>
<button class="mobile-menu-toggle" aria-label="Toggle Menu">
<i class="fas fa-bars"></i>
</button>
</div>
<script>
// Hide expertise and contact links on non-index pages
if (window.location.pathname !== '/' && window.location.pathname !== '/index.html') {
document.getElementById('expertise-link').style.display = 'none';
document.getElementById('contact-link').style.display = 'none';
}
</script>
</header>