Files
outline/server/pages/Pricing.js
2017-11-09 00:20:22 -08:00

22 lines
459 B
JavaScript

// @flow
import React from 'react';
import Grid from 'styled-components-grid';
import { Helmet } from 'react-helmet';
import Hero from './components/Hero';
export default function Pricing() {
return (
<Grid>
<Helmet>
<title>Pricing</title>
</Helmet>
<Hero>
<h1>Pricing</h1>
<p>
Explore Outline with a 14 day trial, free forever for teams smaller than 5.
</p>
</Hero>
</Grid>
);
}