From 8fadf4db7c5aea32e9069f4894e46fea9a3cdd70 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Thu, 2 Mar 2017 16:00:20 -0800 Subject: [PATCH] Add about page --- examples/gatsbygram/pages/about.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/gatsbygram/pages/about.js diff --git a/examples/gatsbygram/pages/about.js b/examples/gatsbygram/pages/about.js new file mode 100644 index 0000000000000..ef56aa639aa76 --- /dev/null +++ b/examples/gatsbygram/pages/about.js @@ -0,0 +1,15 @@ +import React from "react" + +class About extends React.Component { + render () { + return ( +
+

About Gatsbygram

+

Gatsbygram is an example website built with the JavaScript web framework Gatsby

+

The code for the site lives at https://github.com/gatsbyjs/gatsby/tree/1.0/examples/gatsbygram

+
+ ) + } +} + +export default About