-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathFooter.jsx
More file actions
103 lines (95 loc) · 3.14 KB
/
Footer.jsx
File metadata and controls
103 lines (95 loc) · 3.14 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import React from "react";
import { Container, Row, Col } from "reactstrap";
import classes from "./footer.module.css";
import Link from "next/link";
import {
RiYoutubeFill,
RiYoutubeLine,
RiGithubFill,
RiGithubLine,
RiLinkedinFill,
RiLinkedinLine,
RiTwitterLine,
} from "react-icons/ri";
import NewTwitterLogo from "../UI/NewTwitterlogo";
const Footer = () => {
const date = new Date();
const year = date.getFullYear();
return (
<footer>
<Container>
<Row>
<Col lg="12">
<div className={`${classes.footer__social_wrap}`}>
<div className={`${classes.footer__social} ${classes.social__links}`}>
<Link
aria-label="Youtube Channel"
href="https://youtube.com/@piyushgargdev"
target="_blank"
rel="noopener noreferrer"
className={classes.social__item}
>
<span className={classes.icon_outline}>
<RiYoutubeLine />
</span>
<span className={classes.icon_fill}>
<RiYoutubeFill />
</span>
</Link>
<Link
aria-label="Github Profile"
href="https://github.com/piyushgarg-dev"
target="_blank"
rel="noopener noreferrer"
className={classes.social__item}
>
<span className={classes.icon_outline}>
<RiGithubLine />
</span>
<span className={classes.icon_fill}>
<RiGithubFill />
</span>
</Link>
<Link
aria-label="Twitter Account"
href="https://twitter.com/piyushgarg_dev"
target="_blank"
rel="noopener noreferrer"
className={classes.social__item}
>
<span className={classes.icon_outline}>
<RiTwitterLine />
</span>
<span className={classes.icon_fill}>
<NewTwitterLogo />
</span>
</Link>
<Link
aria-label="LinkedIn Profile"
href="https://www.linkedin.com/in/piyushgarg195/"
target="_blank"
rel="noopener noreferrer"
className={classes.social__item}
>
<span className={classes.icon_outline}>
<RiLinkedinLine />
</span>
<span className={classes.icon_fill}>
<RiLinkedinFill />
</span>
</Link>
</div>
<div className={`${classes.footer__copyright}`}>
<p>
© Copyright {year} - Developed by Piyush Garg. All right
reserved.
</p>
</div>
</div>
</Col>
</Row>
</Container>
</footer>
);
};
export default Footer;