blob: b66bacdc4d1505ceb0d3405b23b07ca797516e37 [file] [log] [blame]
pineafanc540da92021-09-03 20:33:36 +01001import { Component } from 'react'
pineafanaed30242021-09-04 09:33:40 +01002import Header from '../../Components/Header'
pineafanfd93e6e2022-05-06 20:30:09 +01003import Link from 'next/link'
pineafanc540da92021-09-03 20:33:36 +01004
5class Failed extends Component {
6 constructor(props) {
7 super(props)
8 }
9
10 render() {
11 return (
pineafanaed30242021-09-04 09:33:40 +010012 <Header
13 name="Verification failed"
pineafanfd93e6e2022-05-06 20:30:09 +010014 subtext={<p>Please try again, and if the error persists please contact us at <Link href="mailto:verification@clicks.codes" target="_blank" rel="noopener noreferrer">verification@clicks.codes</Link></p>}
pineafanaed30242021-09-04 09:33:40 +010015 gradient={["F27878", "D96B6B"]}
pineafana841c762021-11-14 21:21:04 +000016 wave="web/waves/header/rsm"
pineafanaed30242021-09-04 09:33:40 +010017 buttons={[]}
pineafaneebe3c62022-02-11 19:46:21 +000018 fullscreen={true}
pineafanaed30242021-09-04 09:33:40 +010019 />
pineafanc540da92021-09-03 20:33:36 +010020 )
21 }
22
23}
24
25export default Failed;