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

35 lines
747 B
JavaScript
Raw Normal View History

2017-10-22 23:33:10 +00:00
// @flow
import React from 'react';
import styled from 'styled-components';
import Grid from 'styled-components-grid';
2017-10-23 03:29:27 +00:00
import Hero from './components/Hero';
import SignupButton from './components/SignupButton';
2017-10-22 23:33:10 +00:00
2017-10-27 06:02:45 +00:00
function Home() {
2017-10-22 23:33:10 +00:00
return (
<span>
<Grid>
<Hero>
<h1>Your teams knowledge base</h1>
<HeroText>
Documentation, meeting notes, playbooks, onboarding, work logs, brainstorming, decisions, & more
</HeroText>
<p>
<SignupButton />
</p>
</Hero>
</Grid>
</span>
2017-10-22 23:33:10 +00:00
);
}
2017-10-27 06:02:45 +00:00
const HeroText = styled.p`
font-size: 18px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
margin-bottom: 2em;
`;
export default Home;