This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/website/src/pages/about.js

15 lines
310 B
JavaScript
Raw Normal View History

2021-03-23 12:07:19 +00:00
import * as React from "react";
import { Link } from "gatsby";
import Layout from "../components/Layout/Layout";
import SEO from "../components/seo";
const SecondPage = () => (
<Layout>
<SEO title="Page two" />
<Link to="/">Go back to the homepage</Link>
</Layout>
);
export default SecondPage;