import React from 'react'; import { Link } from 'react-router-dom'; import { withNamespaces, WithNamespaces } from 'react-i18next'; import HeaderDetails from 'components/HeaderDetails'; import Rocket from 'static/images/rocket.svg'; import './style.less'; class Home extends React.Component { render() { const { t } = this.props; return (

{t('home.heroTitle1')}
{t('home.heroTitle2')}

{t('home.createButton')} {t('home.exploreButton')}
); } } export default withNamespaces()(Home);