Skip to content

Commit

Permalink
Add about
Browse files Browse the repository at this point in the history
  • Loading branch information
zetter committed Jun 26, 2020
1 parent 4af1513 commit c1652f7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module.exports = {
siteMetadata: {
title: `Route Map Maker`,
description: `Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.`,
author: `@gatsbyjs`,
title: `BSicon map generator`,
description: `Creates random maps using BSicons`,
author: `Chris Zetter`,
},
plugins: [
`gatsby-plugin-react-helmet`,
Expand Down
4 changes: 4 additions & 0 deletions src/components/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ input[type="submit"] {
cursor: pointer;
}

a, a:visited, a:active, a:hover, a:link {
color: white;
}

@keyframes fade-in {
0% {
opacity: 0;
Expand Down
9 changes: 8 additions & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,17 @@ const IndexPage = () => {
{(tab === 'about') &&
<div>
<h3>About</h3>
<p>This makes random maps using BSicons from Wikipedia.</p>
<p>
<a href="https://chriszetter.com/blog/2020/06/25/mapping-anything-with-bsicons/">Find out more about BSicons</a>
{' '}and how{' '}
<a href="https://chriszetter.com/blog/2020/06/26/generating-random-maps/">the generator was made</a>.
</p>
<p><a href="https://github.com/zetter/route-map-maker">Code on github</a>.</p>
</div>
}
</div>
<SEO title="Route Map Maker" />
<SEO />
<div className="canvas-wrapper">
<canvas className="canvas" ref={canvas} width={`${width}px`} height={`${height}px`} />
</div>
Expand Down

0 comments on commit c1652f7

Please sign in to comment.