-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from winterofcode/coc
Coc
- Loading branch information
Showing
6 changed files
with
316 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,13 +11,14 @@ import wocLogo from "../../assets/wocLogo1.png"; | |
// @ts-ignore | ||
import gdscLogo from "../../assets/gdscLogo1.png"; | ||
import footerData from "../../constants/footerData"; | ||
import { Link } from "react-router-dom"; | ||
|
||
const Footer = () => { | ||
const openInNewWindow = (url) => { | ||
window.open(url, "_blank"); | ||
}; | ||
return ( | ||
<div className="footer" > | ||
<div className="footer"> | ||
<div className="footer_top"> | ||
<div className="footer_logo"> | ||
<div className="footer_logo_first"> | ||
|
@@ -30,12 +31,13 @@ const Footer = () => { | |
style={{ cursor: "pointer" }} | ||
onClick={() => openInNewWindow(footerData.instagram)} | ||
/> | ||
<LinkedinOutlined | ||
<LinkedinOutlined | ||
className="footer_logo_socials_icons2" | ||
style={{ cursor: "pointer" }} | ||
onClick={() => openInNewWindow(footerData.linkedin)} | ||
/> | ||
<YoutubeOutlined className="footer_logo_socials_icons3" | ||
<YoutubeOutlined | ||
className="footer_logo_socials_icons3" | ||
style={{ cursor: "pointer" }} | ||
onClick={() => openInNewWindow(footerData.youtube̦)} | ||
/> | ||
|
@@ -45,6 +47,13 @@ const Footer = () => { | |
onClick={() => openInNewWindow(footerData.twitter)} | ||
/> | ||
</div> | ||
<div className="footer_coc"> | ||
<Link to="/coc">Code of Conduct</Link> | ||
<p className="footer_coc_email">Email us for more details</p> | ||
<a href="mailto: [email protected]" className="email_2"> | ||
[email protected] | ||
</a> | ||
</div> | ||
</div> | ||
<div className="footer_resources"> | ||
<h1 className="footer_resources_heading">Resources</h1> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,4 @@ body { | |
color: white !important; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.