diff --git a/public/jori.jpg b/public/jori.jpg new file mode 100644 index 00000000..337f97d1 Binary files /dev/null and b/public/jori.jpg differ diff --git a/public/tom.jpg b/public/tom.jpg new file mode 100644 index 00000000..6483497f Binary files /dev/null and b/public/tom.jpg differ diff --git a/server/pages/About.js b/server/pages/About.js index 06635104..e5c6277b 100644 --- a/server/pages/About.js +++ b/server/pages/About.js @@ -1,8 +1,36 @@ // @flow import React from 'react'; import Grid from 'styled-components-grid'; +import styled from 'styled-components'; import { Helmet } from 'react-helmet'; -import Hero from './components/Hero'; +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%; +`; export default function About() { return ( @@ -10,10 +38,124 @@ export default function About() { About - -

About Outline

-

Just a proof of concept for multiple pages.

-
+
+

About Us

+

Lets get to know each others

+
+ +

+ 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. +

+

+ + 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. + +

+ + + +
+ Jori Lallo +
+
+ @jorilallo +
+
+ + + +
+ Tom Moor +
+
+ @tommoor +
+
+
+ +

Open Source

+

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

+ +

+ 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 + by supporting us financially. +

+

+ 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 + let us know which one you would like to see next{' '} + + here + . +

+

+ 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? +
+ You can drop us a note on our{' '} + Spectrum community or + email us at{' '} + hello@getoutline.com. +

+
); } diff --git a/server/pages/components/Navigation.js b/server/pages/components/Navigation.js index c36f5fcf..fd50f35d 100644 --- a/server/pages/components/Navigation.js +++ b/server/pages/components/Navigation.js @@ -6,10 +6,11 @@ import { signin, developers, changelog, + about, + privacy, githubUrl, spectrumUrl, blogUrl, - twitterUrl, } from '../../../shared/utils/routeHelpers'; import { color } from '../../../shared/styles/constants'; @@ -22,7 +23,7 @@ function TopNavigation() { Features - Blog + About Changelog @@ -51,7 +52,7 @@ function BottomNavigation() { Medium
- Twitter + Privacy
); diff --git a/shared/utils/routeHelpers.js b/shared/utils/routeHelpers.js index d3d854fc..1997e6f4 100644 --- a/shared/utils/routeHelpers.js +++ b/shared/utils/routeHelpers.js @@ -52,3 +52,11 @@ export function changelog(): string { export function signin(): string { return '/auth/slack'; } + +export function about(): string { + return '/about'; +} + +export function privacy(): string { + return '/privacy'; +}