import React from 'react'; import store from 'stores/UserStore'; import { browserHistory } from 'react-router' import SlackAuthLink from '../../components/SlackAuthLink'; import styles from './Home.scss'; export default class Home extends React.Component { componentDidMount = () => { if (store.authenticated) { browserHistory.replace('/dashboard'); } } render() { return (

Hi there,

We're building the best place for engineers, designers and teams to share ideas, tell stories and build knowledge.

**Atlas** can start as a wiki, but it's really up to you what you want to make of it:

- Write documentation in _markdown_
- Build a blog around the API
- Hack the frontend for your needs (coming!)

We're just getting started.

); } }