basic gatsby template

This commit is contained in:
Xetera
2019-07-25 21:00:25 -07:00
parent 5000509790
commit 6982552205
19 changed files with 16574 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import React from "react"
import { Link } from "gatsby"
import Layout from "../components/layout"
import SEO from "../components/seo"
const SecondPage = () => (
<Layout>
<SEO title="Page two" />
<h1>Hi from the second page</h1>
<p>Welcome to page 2</p>
<Link to="/">Go back to the homepage</Link>
</Layout>
)
export default SecondPage