PrometheusGroup's picture
you hve created a fucking blank page!!! well done u stupid fuck
35b8cd4 verified
class CustomNavbar extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
nav {
background: #16213E;
padding: 1rem;
color: white;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.container {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
}
.logo {
font-weight: bold;
font-size: 1.5rem;
color: #6366F1;
}
</style>
<nav>
<div class="container">
<div class="logo">MCP Toolkit</div>
</div>
</nav>
`;
}
}
customElements.define('custom-navbar', CustomNavbar);