blob: f3b0febde78cc5837c2258badda18ce7f20e6543 [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"
pineafan3b0852d2022-05-06 20:39:59 +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}
pineafanaed30242021-09-04 09:33:40 +010018 />
pineafanc540da92021-09-03 20:33:36 +010019 )
20 }
21
22}
23
24export default Failed;