forked from steemit/condenser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server-error.jsx
31 lines (29 loc) · 939 Bytes
/
server-error.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React, { Component } from 'react';
class ServerError extends Component {
render() {
return (
<div
className="float-center"
style={{ width: '640px', textAlign: 'center' }}
>
<img width="640px" height="480px" src="/images/500.jpg" />
<div
style={{
width: '300px',
position: 'relative',
left: '400px',
top: '-400px',
textAlign: 'left',
}}
>
<h4>Sorry.</h4>
<p>Looks like something went wrong on our end.</p>
<p>
Head back to <a href="/">Steemit</a> homepage.
</p>
</div>
</div>
);
}
}
export default ServerError;