Skip to content

Commit 18c7ff1

Browse files
committed
changes in footer
1 parent de9d89f commit 18c7ff1

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed
366 Bytes
Loading
733 Bytes
Loading
550 Bytes
Loading
467 Bytes
Loading

src/components/Footer.js

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import React from 'react';
22
import '../styles/Home.css';
3+
import insta from '../components/Assets/instagram-logo-24.png'
4+
import facebook from '../components/Assets/facebook-logo-24.png'
5+
import linkedin from '../components/Assets/linkedin-logo-24.png'
6+
import youtube from '../components/Assets/youtube-logo-24.png'
7+
38

49
function Footer() {
510
return (
@@ -13,10 +18,18 @@ function Footer() {
1318
</div>
1419
<p>Empowering students with coding skills for the future, one step at a time.</p>
1520
<div className="social-links">
16-
<a href="#" className="social-icon">f</a>
17-
<a href="#" className="social-icon">t</a>
18-
<a href="#" className="social-icon">in</a>
19-
<a href="#" className="social-icon">yt</a>
21+
<a href="#" className="social-icon">
22+
<img src={insta} alt="na"/>
23+
</a>
24+
<a href="#" className="social-icon">
25+
<img src={facebook} alt="na"/>
26+
</a>
27+
<a href="#" className="social-icon">
28+
<img src={linkedin} alt="na"/>
29+
</a>
30+
<a href="#" className="social-icon">
31+
<img src={youtube} alt="na"/>
32+
</a>
2033
</div>
2134
</div>
2235

0 commit comments

Comments
 (0)