Spaces:
Running
Running
File size: 3,823 Bytes
ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 99eb86d ac4cd88 99eb86d ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 9586cdd ac4cd88 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | class FluxHeader extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
:host {
display: block;
}
.header {
background-color: #1F2937;
border-bottom: 1px solid #374151;
padding: 1rem 0;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
font-weight: 700;
font-size: 1.5rem;
color: #F9FAFB;
text-decoration: none;
}
.logo-icon {
color: #10B981;
margin-right: 0.5rem;
}
.nav-links {
display: flex;
list-style: none;
}
.nav-links li {
margin-left: 2rem;
}
.nav-links a {
color: #9CA3AF;
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
color: #10B981;
}
.auth-buttons {
display: flex;
align-items: center;
}
.btn {
padding: 0.5rem 1rem;
border-radius: 0.5rem;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
border: none;
font-size: 0.875rem;
}
.btn-login {
background-color: transparent;
color: #9CA3AF;
margin-right: 0.5rem;
}
.btn-login:hover {
color: #F9FAFB;
}
.btn-signup {
background-color: #10B981;
color: white;
}
.btn-signup:hover {
background-color: #059669;
}
.theme-toggle {
background: none;
border: none;
color: #9CA3AF;
cursor: pointer;
margin-left: 1rem;
padding: 0.5rem;
border-radius: 0.5rem;
}
.theme-toggle:hover {
background-color: #374151;
color: #F9FAFB;
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.logo span {
display: none;
}
}
</style>
<header class="header">
<div class="container">
<a href="#" class="logo">
<i data-feather="aperture" class="logo-icon"></i>
<span>Flux Fusion Studio</span>
</a>
<ul class="nav-links">
<li><a href="index.html" class="active">Create</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="models.html">Models</a></li>
<li><a href="community.html">Community</a></li>
</ul>
<div class="auth-buttons">
<button class="btn btn-login">Log in</button>
<button class="btn btn-signup">Sign up</button>
<button class="theme-toggle" id="theme-toggle">
<i data-feather="moon"></i>
</button>
</div>
</div>
</header>
`;
// Initialize Feather Icons after rendering
setTimeout(() => {
const icons = this.shadowRoot.querySelectorAll('[data-feather]');
icons.forEach(icon => {
const iconName = icon.getAttribute('data-feather');
const svg = feather.icons[iconName].toSvg();
icon.outerHTML = svg;
});
}, 0);
}
}
customElements.define('flux-header', FluxHeader); |