mirror of
https://github.com/outline/outline.git
synced 2025-03-14 10:07:11 +00:00
23 lines
469 B
JavaScript
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>
|
|
);
|
|
}
|