import React, { Component } from 'react' import Card from '../component/common/Card/Card.jsx' import CardHeader from '../component/common/Card/CardHeader.jsx' import CardBody from '../component/common/Card/CardBody.jsx' import LogoHomepage from '../img/logoHeader.svg' import { translate } from 'react-i18next' class Home extends Component { render () { return (
{/* @TODO fix architecture of this component */}
{this.props.t('Welcome on Tracim')}
{this.props.t('Thank you for trusting us and using our collaborative tool')}
{this.props.t('You will create your first workspace')}
{this.props.t('create a workspace')}
logo homepage
) } } export default translate()(Home)