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 ac9dc11
Show file tree
Hide file tree
Showing 2 changed files with 11 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
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 ac9dc11

Please sign in to comment.