BryKnight's picture
Show image
973b24f verified
class CustomNavbar extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
nav {
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.logo {
color: white;
font-weight: bold;
font-size: 1.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
ul {
display: flex;
gap: 2rem;
list-style: none;
margin: 0;
padding: 0;
}
a {
color: white;
text-decoration: none;
transition: opacity 0.2s;
font-weight: 500;
display: flex;
align-items: center;
gap: 0.5rem;
}
a:hover {
opacity: 0.8;
}
@media (max-width: 768px) {
nav {
flex-direction: column;
gap: 1rem;
padding: 1rem;
}
ul {
width: 100%;
justify-content: space-around;
}
}
</style>
<nav>
<div class="logo">
<i data-feather="image"></i>
PixelPond
</div>
<ul>
<li><a href="/"><i data-feather="home"></i> Home</a></li>
<li><a href="#"><i data-feather="grid"></i> Gallery</a></li>
<li><a href="#"><i data-feather="upload"></i> Upload</a></li>
<li><a href="#"><i data-feather="user"></i> Profile</a></li>
</ul>
</nav>
`;
}
}
customElements.define('custom-navbar', CustomNavbar);