2015-09-29 16:00:58 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
2015-09-30 11:06:42 +02:00
|
|
|
import { getLangText } from '../utils/lang_utils';
|
|
|
|
|
2015-09-29 16:00:58 +02:00
|
|
|
|
|
|
|
let ErrorNotFoundPage = React.createClass({
|
|
|
|
render() {
|
|
|
|
return (
|
2015-09-30 10:44:38 +02:00
|
|
|
<div className="row">
|
|
|
|
<div className="col-md-12">
|
|
|
|
<div className="error-wrapper">
|
|
|
|
<h1>404</h1>
|
|
|
|
<p>
|
2015-09-30 11:06:42 +02:00
|
|
|
{getLangText('Ups, the page you are looking for does not exist.')}
|
2015-09-30 10:44:38 +02:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-09-29 16:00:58 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default ErrorNotFoundPage;
|