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/news.js

15 lines
396 B
JavaScript
Raw Normal View History

2021-03-28 16:34:52 +00:00
import * as React from "react";
import Layout, { Section, SectionTitle } from "../components/Layout";
import SEO from "../components/seo";
const NewsPage = () => (
<Layout>
<SEO title="News" />
2021-03-31 11:24:05 +00:00
<Section className="bg-white" first={true}>
2021-03-28 16:34:52 +00:00
<SectionTitle className="text-center py-48">News section coming soon!</SectionTitle>
</Section>
</Layout>
);
export default NewsPage;