File size: 2,450 Bytes
c00d809
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
class CustomHeader extends HTMLElement {
  connectedCallback() {
    this.attachShadow({ mode: 'open' });
    this.shadowRoot.innerHTML = `
      <style>
        :host {
          display: block;
        }
        
        header {
          background: rgba(255, 255, 255, 0.8);
          backdrop-filter: blur(10px);
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
          padding: 1rem 0;
        }
        
        .dark header {
          background: rgba(15, 15, 15, 0.8);
          border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }
        
        .logo {
          font-size: 1.5rem;
          font-weight: 700;
          display: flex;
          align-items: center;
          gap: 0.5rem;
        }
        
        nav ul {
          display: flex;
          list-style: none;
          gap: 1.5rem;
        }
        
        nav a {
          text-decoration: none;
          color: #6b7280;
          font-weight: 500;
          transition: color 0.2s;
          position: relative;
        }
        
        .dark nav a {
          color: #9ca3af;
        }
        
        nav a:hover {
          color: #111827;
        }
        
        .dark nav a:hover {
          color: #f9fafb;
        }
        
        nav a::after {
          content: '';
          position: absolute;
          bottom: -5px;
          left: 0;
          width: 0;
          height: 2px;
          background: #111827;
          transition: width 0.3s;
        }
        
        .dark nav a::after {
          background: #f9fafb;
        }
        
        nav a:hover::after {
          width: 100%;
        }
        
        @media (max-width: 768px) {
          nav ul {
            display: none;
          }
        }
      </style>
      <header>
        <div class="container">
          <div class="logo">
            <span>🏗️</span>
            <span>PromptForge</span>
          </div>
          <nav>
            <ul>
              <li><a href="/">Directory</a></li>
              <li><a href="#">Submit</a></li>
              <li><a href="#">About</a></li>
            </ul>
          </nav>
        </div>
      </header>
    `;
  }
}

customElements.define('custom-header', CustomHeader);