Skip to content
This repository has been archived by the owner on Jul 31, 2020. It is now read-only.

Commit

Permalink
eslint fixes (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
SchaeStewart committed Oct 10, 2019
1 parent 08cc8db commit bbfa905
Show file tree
Hide file tree
Showing 3 changed files with 1,561 additions and 1,558 deletions.
19 changes: 4 additions & 15 deletions components/footer.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@

const links = [
{ href: '/join', label: 'Join Us' },
{ href: '/resources', label: 'Resources' },
{ href: '/contact', label: 'Contact' },
{ href: '/conduct', label: 'Code of Conduct' },
].map((link) => {
link.key = `nav-link-${link.href}-${link.label}`;
return link;
});

const footer = () => (
<footer className="footer">
<div className="columns">
Expand All @@ -32,10 +21,10 @@ const footer = () => (
<h1>Contact Us</h1>
</div>
</div>
<div class="columns">
<div class="column">
Copyright {new Date().getFullYear()} Code For Greensboro
</div>
<div className="columns">
<div className="column">
Copyright {new Date().getFullYear()} Code For Greensboro
</div>
</div>
</div>
</footer>
Expand Down
Loading

0 comments on commit bbfa905

Please sign in to comment.