Improved basic pages: privacy, terms, license

This commit is contained in:
vjrj 2017-11-15 20:01:15 +01:00
parent 440f6c610d
commit 2b3c9a5868
9 changed files with 239 additions and 57 deletions

View file

@ -1,14 +1,15 @@
import React from 'react';
import Page from '../Page/Page';
import { translate } from 'react-i18next';
const Terms = () => (
const Terms = props => (
<div className="Terms">
<Page
title="Terms of Service"
subtitle="Last updated May 29th, 2017"
page="terms"
title={props.t("Términos de Servicio")}
subtitle={props.t("Última actualización 15 de noviembre de 2017")}
page="terms"
/>
</div>
);
export default Terms;
export default translate([], { wait: true })(Terms);