File size: 5,837 Bytes
42ab03e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
class CustomFooter extends HTMLElement {
  connectedCallback() {
    this.attachShadow({ mode: 'open' });
    this.shadowRoot.innerHTML = `
      <style>
        :host {
          display: block;
          margin-top: 4rem;
        }
        
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
        
        .footer {
          background-color: #1F2937;
          color: #d1d5db;
          padding: 3rem 1rem 2rem;
        }
        
        .container {
          max-width: 1280px;
          margin: 0 auto;
        }
        
        .footer-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 2rem;
          margin-bottom: 3rem;
        }
        
        .footer-logo {
          color: white;
          font-size: 1.5rem;
          font-weight: 700;
          margin-bottom: 1rem;
          display: flex;
          align-items: center;
          gap: 0.75rem;
        }
        
        .footer-description {
          color: #9ca3af;
          font-size: 0.875rem;
          line-height: 1.5;
          margin-bottom: 1.5rem;
        }
        
        .social-links {
          display: flex;
          gap: 1rem;
        }
        
        .social-link {
          color: #9ca3af;
          transition: color 0.2s;
        }
        
        .social-link:hover {
          color: white;
        }
        
        .footer-heading {
          color: white;
          font-weight: 600;
          margin-bottom: 1.5rem;
          font-size: 1rem;
        }
        
        .footer-links {
          list-style: none;
        }
        
        .footer-link {
          margin-bottom: 0.75rem;
        }
        
        .footer-link a {
          color: #9ca3af;
          text-decoration: none;
          font-size: 0.875rem;
          transition: color 0.2s;
        }
        
        .footer-link a:hover {
          color: white;
        }
        
        .copyright {
          border-top: 1px solid #374151;
          padding-top: 2rem;
          text-align: center;
          color: #9ca3af;
          font-size: 0.875rem;
        }
        
        @media (max-width: 768px) {
          .footer-grid {
            grid-template-columns: repeat(2, 1fr);
          }
        }
        
        @media (max-width: 480px) {
          .footer-grid {
            grid-template-columns: 1fr;
          }
        }
      </style>
      
      <footer class="footer">
        <div class="container">
          <div class="footer-grid">
            <div>
              <div class="footer-logo">
                <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                  <path d="M12 2L2 7L12 12L22 7L12 2Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                  <path d="M2 17L12 22L22 17" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                  <path d="M2 12L12 17L22 12" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                </svg>
                Replit
              </div>
              <p class="footer-description">
                Build, collaborate, and ship software faster with our cloud-based IDE.
              </p>
              <div class="social-links">
                <a href="#" class="social-link">
                  <i data-feather="twitter"></i>
                </a>
                <a href="#" class="social-link">
                  <i data-feather="github"></i>
                </a>
                <a href="#" class="social-link">
                  <i data-feather="youtube"></i>
                </a>
                <a href="#" class="social-link">
                  <i data-feather="linkedin"></i>
                </a>
              </div>
            </div>
            
            <div>
              <h3 class="footer-heading">Product</h3>
              <ul class="footer-links">
                <li class="footer-link"><a href="#">Features</a></li>
                <li class="footer-link"><a href="#">Templates</a></li>
                <li class="footer-link"><a href="#">Languages</a></li>
                <li class="footer-link"><a href="#">Mobile App</a></li>
                <li class="footer-link"><a href="#">Pricing</a></li>
              </ul>
            </div>
            
            <div>
              <h3 class="footer-heading">Resources</h3>
              <ul class="footer-links">
                <li class="footer-link"><a href="#">Documentation</a></li>
                <li class="footer-link"><a href="#">Tutorials</a></li>
                <li class="footer-link"><a href="#">Blog</a></li>
                <li class="footer-link"><a href="#">Community</a></li>
                <li class="footer-link"><a href="#">Support</a></li>
              </ul>
            </div>
            
            <div>
              <h3 class="footer-heading">Company</h3>
              <ul class="footer-links">
                <li class="footer-link"><a href="#">About</a></li>
                <li class="footer-link"><a href="#">Careers</a></li>
                <li class="footer-link"><a href="#">Terms of Service</a></li>
                <li class="footer-link"><a href="#">Privacy Policy</a></li>
                <li class="footer-link"><a href="#">Contact</a></li>
              </ul>
            </div>
          </div>
          
          <div class="copyright">
            &copy; ${new Date().getFullYear()} Replit Clone. All rights reserved.
          </div>
        </div>
      </footer>
    `;
    
    // Initialize feather icons in shadow DOM
    import('https://unpkg.com/feather-icons').then(() => {
      feather.replace();
    });
  }
}

customElements.define('custom-footer', CustomFooter);