Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame^] | 1 | import Header from '../Components/Header' |
| 2 | import {Component} from 'react' |
| 3 | |
| 4 | export default class Home extends Component { |
| 5 | constructor(props) { |
| 6 | super(props); |
| 7 | } |
| 8 | |
| 9 | |
| 10 | render() { |
| 11 | return ( |
| 12 | <> |
| 13 | <Header |
| 14 | name="500" |
| 15 | subtext="Internal Server Error" |
| 16 | gradient={["6576CC", "4B5899"]} |
| 17 | wave="Main" |
| 18 | buttons={[ |
| 19 | {color: "6576CC", buttonText: "ffffff", text: "Go Home", link: "/#"}, |
| 20 | {color: "6576CC", buttonText: "ffffff", text: "Send Error", |
| 21 | link: `mailto:staff@clicksminuteper.net?subject=Website%20Error%20Report&body=I%20got%20a%20500%20on%20the%20page%20%5BPlease%20Copy%20Website%20Link%20Here%5D`, |
| 22 | target: true |
| 23 | }]} |
| 24 | hideArrow={true} |
| 25 | /> |
| 26 | </> |
| 27 | ) |
| 28 | } |
| 29 | } |