Skip to content

Commit d8f2e15

Browse files
committed
add footer links
1 parent b6bd621 commit d8f2e15

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/components/layout.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
import React from "react"
99
import PropTypes from "prop-types"
10-
import { useStaticQuery, graphql } from "gatsby"
10+
import { Link, useStaticQuery, graphql } from "gatsby"
11+
import { FaGithub } from 'react-icons/fa';
1112

1213
import Header from "./header"
1314
import "./layout.scss"
@@ -33,8 +34,13 @@ const Layout = ({ children }) => {
3334
<div className="container">
3435
© {new Date().getFullYear()} by
3536
{` `}
36-
<a href="https://twitter.com/kenoldb" target="_blank" rel="noopener noreferrer">Kenold Beauplan</a> |
37-
See <a href="https://github.com/kenold/css-ui" target="_blank" rel="noopener noreferrer">Github Repo</a>
37+
<a href="https://twitter.com/kenoldb" target="_blank" rel="noopener noreferrer">&nbsp;Kenold Beauplan</a>
38+
<ul className="footer__links">
39+
<li className="footer__link">Built with <a href="https://www.gatsbyjs.org" target="_blank" rel="noopener noreferrer">Gatsby JS</a></li>
40+
<li className="footer__link">Hosted on <a href="https://www.netlify.com/" target="_blank" rel="noopener noreferrer">Netlify</a></li>
41+
<li className="footer__link">See <a href="https://github.com/kenold/css-ui" target="_blank" rel="noopener noreferrer"><FaGithub /> Github Repo</a></li>
42+
<li className="footer__link">View <Link to="/card/examples">Card Examples</Link></li>
43+
</ul>
3844
</div>
3945
</footer>
4046
</div>

0 commit comments

Comments
 (0)