From 8faed5de6fc56e0f52c6dad675400d722fc818d8 Mon Sep 17 00:00:00 2001
From: Tom Moor
Date: Tue, 25 Jun 2019 00:22:27 -0700
Subject: [PATCH] chore: update about page
---
server/pages/About.js | 239 ++++++++++++++++--------------------------
1 file changed, 93 insertions(+), 146 deletions(-)
diff --git a/server/pages/About.js b/server/pages/About.js
index dd2c35e5f..a6d90cf26 100644
--- a/server/pages/About.js
+++ b/server/pages/About.js
@@ -1,45 +1,23 @@
// @flow
import * as React from 'react';
-import Grid from 'styled-components-grid';
import styled from 'styled-components';
+import Grid from 'styled-components-grid';
import PageTitle from './components/PageTitle';
-import Flex from '../../shared/components/Flex';
import Header from './components/Header';
import Content from './components/Content';
-const Authors = styled(Flex).attrs({
- justify: 'center',
-})`
- margin: 40px 0;
-`;
-
-const Author = styled(Flex).attrs({
- column: true,
- align: 'center',
-})`
- margin-right: 60px;
-
- &:last-child {
- margin-right: 0;
- }
-`;
-
-const Avatar = styled.img`
- width: 60px;
- height: 60px;
- margin-bottom: 20px;
-
- border-radius: 50%;
+const List = styled('ul')`
+ padding-left: 1em;
`;
export default function About() {
return (
-
+
-
- About Us
- The team behind Outline
+
+ About
+ The ideas behind Outline
@@ -47,128 +25,97 @@ export default function About() {
focused on speed, usability and extensibility.
- The open source project is maintained by Jori Lallo and Tom Moor.
- Having both run venture-backed software startups previously and seeing
- many similar VC-funded products try and fail while the market need
- remained we decided to try a different approach. So don’t worry,
- Outline is here to last.
-
-
-
- Outline is currently in public beta. The hosted service will stay
- free during this period. After that we will offer Outline free to
- get started and have reasonable plans for larger teams.
-
-
-
-
-
-
- Jori Lallo
-
-
-
-
-
-
-
- Tom Moor
-
-
-
-
-
- Open Source
-
- Outline is built by a group of core{' '}
+ The project consists of an{' '}
- maintainers
- , we believe in being honest and transparent.
-
-
- -
- Accountability. Being open source helps to keep
- ourselves accountable for progress, code quality, communication, and
- roadmap.
-
- -
- Community. We hope that over time we can build up a
- community of like-minded folks that can contribute plugins,
- integrations, and core fixes to the project that will benefit
- everyone.
-
- -
- Marketing. Every product needs a wedge into the
- market. Being open source offers many opportunities to market the
- project with a limited budget.
-
- -
- Security. We take privacy of your data extremely
- seriously. Getting more eyes on the code makes us more confident
- that Outline is as secure as possible.
-
-
-
- You can view Outline’s source code on{' '}
- GitHub.
-
- FAQ
-
-
Why would I pay you if I can run Outline myself?
- You don’t have to but you might have better things to do with your
- time. When you sign up for Outline, you’ll always be running the
- latest version, have all the features and we’ll answer the questions
- your team might have. You’ll also help to keep Outline getting better
- by supporting us financially.
-
-
-
Can I use X to signup for Outline?
- We started with Slack and Google as many teams are already using these
- services for team identity. We’ll consider adding more login methods
- soon. Please let us know which one you would like to see next{' '}
-
- here
- .
-
-
-
How can I export my data if you go away?
- Outline includes the ability to export individual documents,
- collections or your entire knowledge base to markdown with a single
- click so you’re never locked in. We also have an extensive{' '}
- API that can be used for accessing documents
- programatically.
-
-
-
How can I get in touch with you?
- You can drop us a note on our{' '}
- Spectrum community or
- email us at{' '}
- hello@getoutline.com.
+ Open Source core
+ {' '}
+ which can be hosted on your own infrastructure and a paid, hosted,
+ service (you’re looking at it!) that provides income for continued
+ feature development and maintenance.
+
+
+
+ Open Source
+
+ Most software products today are built to be closed source, so why
+ make the code public? We believe there are many advantages to
+ doing so:
+
+
+
+ Accountability. Being open source helps to keep
+ the team accountable for progress, code quality, communication,
+ and roadmap.
+
+
+ Community. We’re building a community of
+ like-minded people that can contribute plugins, integrations,
+ and fixes to the project that will benefit everyone.
+
+
+ Marketing. Every product needs a wedge into the
+ market. Being open source offers many opportunities to spread
+ the project.
+
+
+ Security. We take privacy of your data
+ extremely seriously. Getting more eyes on the code makes us more
+ confident that Outline is as secure as possible.
+
+
+ Peace of Mind. A lot of software products are
+ shut down and disappear, in the worst case scenario you’ll
+ always be able to run your own copy of Outline.
+
+
+
+
+
+ FAQ
+
+
Why would I pay you if I can run Outline myself?
+ You don’t have to but you might have better things to do with your
+ time. When you sign up for Outline, you’ll always be running the
+ latest version, have all the features and we’ll answer the
+ questions your team might have. You’ll also help to keep Outline
+ getting better by supporting us financially.
+
+
+
Can I use X to signin to Outline?
+ We started with Slack and Google as many teams are already using
+ these services for team identity. We’ll consider adding more login
+ methods soon. Please let us know which one you would like to see
+ next{' '}
+
+ here
+ .
+
+
+
How can I export my data if you go away?
+ Outline includes the ability to export individual documents,
+ collections or your entire knowledge base to markdown with a
+ single click so you’re never locked in. We also have an extensive{' '}
+ API that can be used for accessing
+ documents programatically.
+
+
+
How can I get in touch with you?
+ You can drop us a note on our{' '}
+ Spectrum community or
+ email us at{' '}
+ hello@getoutline.com.
+
+
+
);