// @flow import * as React from 'react'; import { Helmet } from 'react-helmet'; import styled from 'styled-components'; import Grid from 'styled-components-grid'; import breakpoint from 'styled-components-breakpoint'; import Notice from '../../shared/components/Notice'; import Hero from './components/Hero'; import Centered from './components/Centered'; import SigninButtons from './components/SigninButtons'; import SlackLogo from '../../shared/components/SlackLogo'; import GithubLogo from '../../shared/components/GithubLogo'; import Flex from '../../shared/components/Flex'; import { githubUrl, slackAppStoreUrl } from '../../shared/utils/routeHelpers'; type Props = { notice?: 'google-hd' | 'auth-error' | 'hd-not-allowed', lastSignedIn: string, googleSigninEnabled: boolean, slackSigninEnabled: boolean, }; function Home(props: Props) { return ( Outline - Team wiki & knowledge base

Your team’s knowledge base

Team wiki, documentation, meeting notes, playbooks, onboarding, work logs, brainstorming, & more…

{props.notice === 'google-hd' && ( Sorry, Google sign in cannot be used with a personal email. Please try signing in with your company Google account. )} {props.notice === 'hd-not-allowed' && ( Sorry, your Google apps domain is not allowed. Please try again with an allowed company domain. )} {props.notice === 'auth-error' && ( Authentication failed - we were unable to sign you in at this time. Please try again. )}

Improve Communication

Easily structure your teams information in one central, structured location. No more hunting through folders or scanning pages of search results and chat conversations.

Safe & Secure

Outline provides a secure place for your teams documentation on our hosted platform, stored in portable Markdown format. Or, you can run your own copy – it’s open source!

Blazing Fast

Outline is fast, really fast. We’ve worked hard to ensure millisecond response times – documents load instantly, search is speedy and navigating the UI is delightful.

Markdown Support

Documents are stored in plain Markdown making editing, import and export painless. Shortcuts are also built right into the editor so you can easily format using **markdown syntax** if you like.

 Slack & API

Get Slack notifications about changes and search Outline directly within Slack using the{' '} /outline <keyword> command. Access your information programatically through the modern API.

Slack App

 Open Source

Outline is open source, so the community can help improve it too. You get new features, interface improvements, bug fixes, and a transparent roadmap for free.

GitHub

); } const Screenshot = styled.img` width: 100%; box-shadow: 0 0 80px 0 rgba(124, 124, 124, 0.5), 0 0 10px 0 rgba(237, 237, 237, 0.5); border-radius: 5px; ${breakpoint('desktop')` margin-top: -120px; margin-left: 120px; width: 135%; `}; `; const Mask = styled.div` width: 100%; overflow: hidden; padding: 8em 0; `; const Features = styled.div` background: hsl(180, 58%, 85%); padding: 0 2em; width: 100%; `; const Feature = styled(Grid.Unit)` padding: 2em 0; p { font-weight: 500; opacity: 0.8; } h2 { display: flex; font-size: 1.8em; align-items: center; margin-top: 0; } a { color: ${props => props.theme.black}; text-decoration: underline; text-transform: uppercase; font-weight: 500; font-size: 14px; } ${breakpoint('tablet')` padding: 4em 0; `}; `; const Footer = styled.div` background: hsl(127, 58%, 85%); text-align: left; width: 100%; padding: 4em 2em; h2 { font-size: 1.8em; margin-top: 0; } ${breakpoint('tablet')` margin: 2em 0; padding: 6em 4em; `}; `; const HeroText = styled.p` font-size: 22px; color: #666; font-weight: 500; text-align: left; max-width: 600px; margin-bottom: 2em; `; export default Home;