blob: cb2127f7e3bbfe5e711ec204b6c1680ef3e07805 [file] [log] [blame]
import Header from '../Components/Header'
import {Component} from 'react'
export default class Home extends Component {
constructor(props) {
super(props);
}
render() {
return (
<>
<Header
name="403"
subtext="Forbidden - You do not have the correct permissions to view this page"
gradient={["F27878", "D96B6B"]}
wave="web/waves/header/rsm"
buttons={[{color: "F27878", buttonText: "ffffff", text: "Go Home", link: "/#"}]}
fullscreen={true}
season={this.props.season}
/>
</>
)
}
}