Skip to content
Snippets Groups Projects
page-2.js 358 B
Newer Older
  • Learn to ignore specific revisions
  • James Tharpe's avatar
    James Tharpe committed
    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