This commit is contained in:
Tom Moor
2017-10-22 17:16:57 -07:00
parent aceaf261d2
commit 802ce10f14
10 changed files with 146 additions and 149 deletions

27
server/pages/Pricing.js Normal file
View File

@ -0,0 +1,27 @@
// @flow
import React from 'react';
import styled from 'styled-components';
import Grid from 'styled-components-grid';
import { Helmet } from 'react-helmet';
const Header = styled.div`
width: 100%;
padding: 3em;
text-align: center;
`;
export default function Pricing() {
return (
<Grid>
<Helmet>
<title>Pricing</title>
</Helmet>
<Header>
<h1>Pricing</h1>
<p>
Just a proof of concept for multiple pages.
</p>
</Header>
</Grid>
);
}