page-2.js 358 B

12345678910111213141516
  1. import React from "react"
  2. import { Link } from "gatsby"
  3. import Layout from "../components/layout"
  4. import SEO from "../components/seo"
  5. const SecondPage = () => (
  6. <Layout>
  7. <SEO title="Page two" />
  8. <h1>Hi from the second page</h1>
  9. <p>Welcome to page 2</p>
  10. <Link to="/">Go back to the homepage</Link>
  11. </Layout>
  12. )
  13. export default SecondPage