// @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'; import { developers, githubUrl } from '../utils/routeHelpers'; import { color } from '../../shared/styles/constants'; function Home() { return (

Your team’s knowledge base

Documentation, meeting notes, playbooks, onboarding, work logs, brainstorming, decisions, & more…

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

Outline stores all documents in plain Markdown. Shortcuts are also built right into the editor so you can easily format using{' '} **markdown syntax** if you like.

Open Source

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

GitHub

Integrations & API

All of Outline’s functionality is available through the API. The editor itself is built on React and we’re working on making it pluggable and extensible.

Documentation

Powerful Search

Outline includes a super fast search that’s the best way to find what you’re looking for once your knowledge base starts to grow in size.

); } const Screenshot = styled.img` width: 150%; 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; `; const Highlights = styled(Grid)` background: ${color.yellow}; margin: 0 1em; padding: 0 1em; `; const Features = styled(Grid)` padding: 0 2em; overflow: hidden; `; const Feature = styled(Grid.Unit)` padding: 4em 3em; h2 { margin-top: 0; } a { color: ${color.black}; text-decoration: underline; text-transform: uppercase; font-weight: 500; font-size: 14px; } `; const Footer = styled.div` text-align: center; width: 100%; padding: 6em; `; const HeroText = styled.p` font-size: 18px; max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 2em; `; export default Home;