File size: 1,376 Bytes
7fa209a
 
 
 
 
 
33b5019
7fa209a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33b5019
7fa209a
 
 
 
 
 
 
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
class CustomFooter extends HTMLElement {
  connectedCallback() {
    this.attachShadow({ mode: 'open' });
    this.shadowRoot.innerHTML = `
      <style>
        footer {
          background: #1e293b;
          color: white;
          text-align: center;
          padding: 2rem;
          margin-top: 40px;
        }
        
        .footer-content {
          max-width: 1200px;
          margin: 0 auto;
        }
        
        .footer-links {
          display: flex;
          justify-content: center;
          gap: 20px;
          margin-bottom: 20px;
        }
        
        .footer-links a {
          color: white;
          text-decoration: none;
        }
        
        .footer-links a:hover {
          text-decoration: underline;
        }
        
        .copyright {
          margin-top: 20px;
          font-size: 0.9rem;
          opacity: 0.8;
        }
      </style>
      <footer>
        <div class="footer-content">
          <div class="footer-links">
            <a href="/about.html">ืื•ื“ื•ืช</a>
            <a href="/privacy.html">ืคืจื˜ื™ื•ืช</a>
            <a href="/contact.html">ืฆื•ืจ ืงืฉืจ</a>
          </div>
          <div class="copyright">
            ยฉ 2023 StudyMate - ื›ืœ ื”ื–ื›ื•ื™ื•ืช ืฉืžื•ืจื•ืช
          </div>
        </div>
      </footer>
    `;
  }
}
customElements.define('custom-footer', CustomFooter);