| class CustomNavbar extends HTMLElement { | |
| connectedCallback() { | |
| this.attachShadow({ mode: 'open' }); | |
| this.shadowRoot.innerHTML = ` | |
| <style> | |
| nav { | |
| background: rgba(26, 32, 44, 0.8); | |
| backdrop-filter: blur(10px); | |
| padding: 1rem 2rem; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| z-index: 1000; | |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); | |
| } | |
| .logo { | |
| font-family: 'JetBrains Mono', monospace; | |
| color: white; | |
| font-weight: bold; | |
| font-size: 1.25rem; | |
| background: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| ul { | |
| display: flex; | |
| gap: 1.5rem; | |
| list-style: none; | |
| margin: 0; | |
| padding: 0; | |
| align-items: center; | |
| } | |
| a { | |
| color: rgba(255, 255, 255, 0.8); | |
| text-decoration: none; | |
| transition: color 0.2s; | |
| font-weight: 500; | |
| display: flex; | |
| align-items: center; | |
| } | |
| a:hover { | |
| color: #3a86ff; | |
| } | |
| .nav-link i { | |
| margin-right: 0.5rem; | |
| } | |
| @media (max-width: 768px) { | |
| nav { | |
| flex-direction: column; | |
| padding: 1rem; | |
| } | |
| ul { | |
| margin-top: 1rem; | |
| } | |
| } | |
| </style> | |
| <nav> | |
| <div class="logo">Python Security Wizard</div> | |
| <ul> | |
| <li><a href="#hero" class="nav-link"><i data-feather="home"></i> Home</a></li> | |
| <li><a href="#about" class="nav-link"><i data-feather="user"></i> About</a></li> | |
| <li><a href="#projects" class="nav-link"><i data-feather="code"></i> Projects</a></li> | |
| <li><a href="#contact" class="nav-link"><i data-feather="mail"></i> Contact</a></li> | |
| </ul> | |
| </nav> | |
| `; | |
| } | |
| } | |
| customElements.define('custom-navbar', CustomNavbar); |