combine.fm/views/notfound.js

31 lines
935 B
JavaScript
Raw Normal View History

2015-08-21 18:33:50 +01:00
import React from 'react';
2015-08-21 20:56:50 +01:00
import { Link } from 'react-router';
2015-08-21 18:33:50 +01:00
import Head from './head';
import Foot from './foot';
export default React.createClass({
render: function() {
return (
2015-08-21 20:56:50 +01:00
<div className='error'>
2015-08-21 18:33:50 +01:00
<div className='container main'>
<div className='row'>
2015-08-21 20:56:50 +01:00
<div className='col-md-12'>
<div className='error-logo'>
2016-01-09 15:10:28 +00:00
<Link to='/'><img src='/images/logo-full-300.png' width='50' /></Link>
2015-08-21 20:56:50 +01:00
</div>
</div>
</div>
<div className='row vertical-center'>
2015-08-21 18:33:50 +01:00
<div className='col-md-12'>
<h2>404</h2>
<h1>Sorry, it looks like the page you asked for is gone.</h1>
2016-01-09 15:10:28 +00:00
<Link to='/'>Take Me Home</Link> or <a href='https://www.youtube.com/watch?v=gnnIrTLlLyA' target='_blank'>Take Me to the Wubs</a>
2015-08-21 18:33:50 +01:00
</div>
</div>
</div>
</div>
);
}
});