Improved basic pages: privacy, terms, license
This commit is contained in:
parent
440f6c610d
commit
2b3c9a5868
9 changed files with 239 additions and 57 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue