This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/server/pages/Pricing.js
2018-05-05 16:16:08 -07:00

23 lines
474 B
JavaScript

// @flow
import * as 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>
);
}