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/About.js

20 lines
409 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 About() {
return (
<Grid>
<Helmet>
<title>About</title>
</Helmet>
<Hero>
<h1>About Outline</h1>
<p>Just a proof of concept for multiple pages.</p>
</Hero>
</Grid>
);
}