blob: 7ec247d1b53073287c8f90b32c6c40890ff1af75 [file] [log] [blame]
Samuel Shuert835c71f2021-09-03 15:49:26 -05001import Header from '../Components/Header'
2import {Component} from 'react'
3
4export default class Home extends Component {
pineafanaa9c4fd2022-06-10 19:58:10 +01005 constructor(props) {
6 super(props);
7 }
Samuel Shuert835c71f2021-09-03 15:49:26 -05008
pineafanaa9c4fd2022-06-10 19:58:10 +01009 render() {
10 return (
11 <>
12 <Header
13 name="500"
14 subtext="Internal Server Error"
15 gradient={["F27878", "D96B6B"]}
16 wave="web/waves/header/rsm"
17 buttons={[
18 {color: "F27878", buttonText: "ffffff", text: "Go Home", link: "/#"},
19 {color: "F27878", buttonText: "ffffff", text: "Send Error",
20 link: `mailto:staff@clicks.codes?subject=Website%20Error%20Report&body=I%20got%20a%20500%20on%20the%20page%20%5BPlease%20Copy%20Website%20Link%20Here%5D`,
21 target: true
22 }]}
23 fullscreen={true}
PineaFana465f352023-02-05 16:45:01 +000024 season={this.props.season}
pineafanaa9c4fd2022-06-10 19:58:10 +010025 />
26 </>
27 )
28 }
Samuel Shuert835c71f2021-09-03 15:49:26 -050029}