Spaces:
Running
Running
File size: 4,125 Bytes
cf89615 12a4e8b c6e21e7 12a4e8b cf89615 12a4e8b c6e21e7 cf89615 c6e21e7 cf89615 |
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 155 156 157 158 159 160 161 162 163 164 |
class CustomHeader extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
:host {
display: block;
}
header {
background-color: #1f2937;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 100;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}
.logo {
display: flex;
align-items: center;
font-weight: 700;
font-size: 1.5rem;
color: white;
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: #d1d5db;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: #10b981;
}
.nav-buttons {
display: flex;
align-items: center;
}
.btn {
padding: 0.5rem 1rem;
border-radius: 0.375rem;
font-weight: 500;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-outline {
border: 1px solid #10b981;
color: #10b981;
margin-right: 1rem;
}
.btn-outline:hover {
background-color: #10b981;
color: white;
}
.btn-primary {
background-color: #10b981;
color: white;
}
.btn-primary:hover {
background-color: #059669;
}
.mobile-menu-button {
display: none;
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.nav-buttons {
display: none;
}
.mobile-menu-button {
display: block;
}
}
</style>
<header>
<div class="container">
<nav>
<a href="/" class="logo">
<i data-feather="aperture" class="logo-icon"></i>
<span>FrameForge</span>
</a>
<ul class="nav-links">
<li><a href="/">Home</a></li>
<li><a href="/models">Models</a></li>
<li><a href="/#features">Features</a></li>
<li><a href="/upload">Upload</a></li>
<li><a href="/documentation">Documentation</a></li>
</ul>
<div class="nav-buttons">
<a href="/signin" class="btn btn-outline">Sign In</a>
<a href="/signup" class="btn btn-primary">Get Started</a>
</div>
<button class="mobile-menu-button">
<i data-feather="menu"></i>
</button>
</nav>
</div>
</header>
`;
// Initialize Feather Icons
const featherScript = document.createElement('script');
featherScript.src = 'https://unpkg.com/feather-icons';
featherScript.onload = () => {
const featherMinScript = document.createElement('script');
featherMinScript.src = 'https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js';
featherMinScript.onload = () => {
feather.replace();
};
this.shadowRoot.appendChild(featherMinScript);
};
this.shadowRoot.appendChild(featherScript);
}
}
customElements.define('custom-header', CustomHeader); |