diff --git a/server/pages/About.js b/server/pages/About.js index e5c6277b..5f66fbd3 100644 --- a/server/pages/About.js +++ b/server/pages/About.js @@ -36,30 +36,29 @@ export default function About() { return ( - About + About Us

About Us

-

Lets get to know each others

+

Who builds this anyway?

- Outline is a wiki and knowledge base built for growing teams. We`re + Outline is a wiki and knowledge base built for growing teams. We’re focused on speed, usability and extensibility.

- The project is maintained by Jori Lallo and Tom Moor. Outline is a - open source sideproject for both us which we`re developing along our - day jobs. After running both have run venture-backed software startups - previously and seeing many similar traditional VC-funded products try - and fail whilst the market need remained we decided to try a different - approach. So don`t worry, Outline is here to last. + 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 service will stay free - during this period. After that we will offer Outline free for teams - up to 5 people and have reasonable plans for larger teams. + Outline is currently in public beta. The hosted service will stay + free during this period. After that we will offer Outline free for + teams up to 5 people and have reasonable plans for larger teams.

@@ -69,7 +68,9 @@ export default function About() { Jori Lallo
- @jorilallo + + @jorilallo +
@@ -79,15 +80,22 @@ export default function About() { Tom Moor
- @tommoor + + @tommoor +

Open Source

- Outline is built by a group of core maintainers, we believe in being - honest and transparent. + Outline is built by a group of core{' '} + + maintainers + , we believe in being honest and transparent.

- You can view Outline`s source code on{' '} + 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. And you`ll help us keep Outline getting better +

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 Google/GitHub/etc to signup for Outline? -
+

Can I use Google/GitHub/etc to signup for Outline?

We started with Slack as many teams are already using it and benefit - from the integrations. We`ll be adding more login methods soon. Please + from the integrations. We’ll be adding more login methods soon. Please let us know which one you would like to see next{' '} .

- How can I export my data if you go away? -
- We`re committed on making your data portable. We`ll soon add better +

How can I export my data if you go away?

+ We’re committed on making your data portable. We’ll soon add better import and export options so you which will let you take your data and view it in HTML form or upload to self-hosted Outline. Until then, you can do this through our
API.

- How can I get in touch with you? -
+

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. + hello@getoutline.com.

diff --git a/server/pages/components/Content.js b/server/pages/components/Content.js index 713d4a67..a69c20cb 100644 --- a/server/pages/components/Content.js +++ b/server/pages/components/Content.js @@ -4,6 +4,6 @@ import styled from 'styled-components'; export default styled.div` width: 100%; max-width: 720px; - margin: 0 auto; + margin: 0 auto 2em; padding: 0 2em; `; diff --git a/shared/styles/base.js b/shared/styles/base.js index ff3856f0..87d1978d 100644 --- a/shared/styles/base.js +++ b/shared/styles/base.js @@ -69,10 +69,14 @@ export default ` margin-bottom: 1em; } + li { + padding: .2em 0; + } + hr { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border - bottom: 1px solid rgba(255, 255, 255, 0.3); -} +} `;