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.
outline/server/pages/Pricing.js

23 lines
469 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>
);
}