-
-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathFooter.component.jsx
More file actions
37 lines (33 loc) · 965 Bytes
/
Footer.component.jsx
File metadata and controls
37 lines (33 loc) · 965 Bytes
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
import React, { Fragment } from 'react';
import {ReactComponent as GitHub} from '../../assets/GitHub.svg';
import {ReactComponent as Database} from '../../assets/Database.svg';
import './Footer.styles.scss';
const Footer = () => {
return <Fragment>
<div className='footer'>
<div className="socials">
<div className="social-item">
<a
href='https://github.com/Mayank0255/Stackoverflow-Clone-Frontend'
target='_blank'
rel="noreferrer"
>
<GitHub/>
</a>
<p><strong>Frontend</strong></p>
</div>
<div className="social-item">
<a
href='https://github.com/Mayank0255/Stackoverflow-Clone-Backend'
target='_blank'
rel="noreferrer"
>
<Database/>
</a>
<p><strong>Backend</strong></p>
</div>
</div>
</div>
</Fragment>
};
export default Footer;