summaryrefslogtreecommitdiff
path: root/@linaria/examples/gatsby/custom-config/src/pages/page-2.js
blob: 666c23ef30f9dee05b648d602f578ee46ef01ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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