mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 01:05:58 +02:00
17 lines
358 B
JavaScript
17 lines
358 B
JavaScript
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
|