Pages (terms/tos/privacy), comments improvements, etc
This commit is contained in:
parent
cd16f45d8e
commit
952431d296
34 changed files with 435 additions and 97 deletions
|
|
@ -1,12 +1,15 @@
|
|||
import React from 'react';
|
||||
import { Alert } from 'react-bootstrap';
|
||||
import { translate, Trans } from 'react-i18next';
|
||||
|
||||
const NotFound = () => (
|
||||
<div className="NotFound">
|
||||
<Alert bsStyle="danger">
|
||||
<p><strong>Error [404]</strong>: {window.location.pathname} does not exist.</p>
|
||||
<p>
|
||||
<Trans i18nKey="not-found">Upppps: Esta página no existe</Trans>
|
||||
</p>
|
||||
</Alert>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default NotFound;
|
||||
export default translate([], { wait: true })(NotFound);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue