blob: 5508d8efc2c2dbfc15e2bde4819c79c8d0452a79 [file] [log] [blame]
pineafanc540da92021-09-03 20:33:36 +01001import { Component } from 'react'
pineafanaed30242021-09-04 09:33:40 +01002import Header from '../../Components/Header'
pineafanc540da92021-09-03 20:33:36 +01003
4class Failed extends Component {
5 constructor(props) {
6 super(props)
7 }
8
9 render() {
10 return (
pineafanaed30242021-09-04 09:33:40 +010011 <Header
12 name="Verification failed"
pineafanff3d4522022-05-06 19:51:02 +010013 subtext={<p>Please try again, and if the error persists please contact us at <a href="mailto:verification@clicks.codes" target="_blank" rel="noopener noreferrer">verification@clicks.codes</a></p>}
pineafanaed30242021-09-04 09:33:40 +010014 gradient={["F27878", "D96B6B"]}
pineafana841c762021-11-14 21:21:04 +000015 wave="web/waves/header/rsm"
pineafanaed30242021-09-04 09:33:40 +010016 buttons={[]}
pineafaneebe3c62022-02-11 19:46:21 +000017 fullscreen={true}
PineaFana465f352023-02-05 16:45:01 +000018 season={this.props.season}
pineafanaed30242021-09-04 09:33:40 +010019 />
pineafanc540da92021-09-03 20:33:36 +010020 )
21 }
22
23}
24
25export default Failed;