deevyanshu commited on
Commit
2dfb4fb
·
verified ·
1 Parent(s): 0e7cfb5

after contact me div add these 3 icons in footer instaed of contact me

Browse files
Files changed (1) hide show
  1. components/footer.js +5 -7
components/footer.js CHANGED
@@ -56,19 +56,17 @@ class CustomFooter extends HTMLElement {
56
  <footer>
57
  <div class="footer-content">
58
  <div class="social-links">
59
- <a href="#" aria-label="GitHub"><i data-feather="github"></i></a>
60
- <a href="#" aria-label="LinkedIn"><i data-feather="linkedin"></i></a>
61
- <a href="#" aria-label="Twitter"><i data-feather="twitter"></i></a>
62
- <a href="#" aria-label="Dribbble"><i data-feather="dribbble"></i></a>
63
  </div>
64
  <div class="footer-links">
65
  <a href="#home">Home</a>
66
  <a href="#about">About</a>
67
  <a href="#projects">Projects</a>
68
  <a href="#certificates">Certificates</a>
69
- <a href="#contact">Contact</a>
70
- </div>
71
- <p class="copyright">&copy; ${new Date().getFullYear()} John Doe. All rights reserved.</p>
72
  </div>
73
  </footer>
74
  `;
 
56
  <footer>
57
  <div class="footer-content">
58
  <div class="social-links">
59
+ <a href="https://github.com" target="_blank" aria-label="GitHub"><i data-feather="github"></i></a>
60
+ <a href="https://linkedin.com" target="_blank" aria-label="LinkedIn"><i data-feather="linkedin"></i></a>
61
+ <a href="https://twitter.com" target="_blank" aria-label="Twitter"><i data-feather="twitter"></i></a>
 
62
  </div>
63
  <div class="footer-links">
64
  <a href="#home">Home</a>
65
  <a href="#about">About</a>
66
  <a href="#projects">Projects</a>
67
  <a href="#certificates">Certificates</a>
68
+ </div>
69
+ <p class="copyright">&copy; ${new Date().getFullYear()} John Doe. All rights reserved.</p>
 
70
  </div>
71
  </footer>
72
  `;