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
2017-10-29 15:02:24 -07:00

35 lines
747 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// @flow
import React from 'react';
import styled from 'styled-components';
import Grid from 'styled-components-grid';
import Hero from './components/Hero';
import SignupButton from './components/SignupButton';
function Home() {
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>
);
}
const HeroText = styled.p`
font-size: 18px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
margin-bottom: 2em;
`;
export default Home;