Spaces:
Running
Running
after contact me div add these 3 icons in footer instaed of contact me
Browse files- 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="
|
| 60 |
-
<a href="
|
| 61 |
-
<a href="
|
| 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 |
-
|
| 70 |
-
</
|
| 71 |
-
<p class="copyright">© ${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">© ${new Date().getFullYear()} John Doe. All rights reserved.</p>
|
|
|
|
| 70 |
</div>
|
| 71 |
</footer>
|
| 72 |
`;
|