More work in home, footer, new credits page

This commit is contained in:
vjrj 2017-12-11 07:56:54 +01:00
parent b6b8f893e3
commit 441dfa4c62
22 changed files with 155 additions and 104 deletions

View file

@ -0,0 +1,15 @@
import React from 'react';
import Page from '../Page/Page';
import { translate } from 'react-i18next';
const Credits = props => (
<div className="Credits">
<Page
title={props.t("Créditos")}
subtitle={props.t("Sobre los datos y imágenes usados")}
page="credits"
/>
</div>
);
export default translate([], { wait: true })(Credits);