blob: cc6e010940273df29feef190654003bb3dfb8a81 [file] [log] [blame]
pineafanfd93e6e2022-05-06 20:30:09 +01001import { Component } from 'react'
2import Header from '../../../Components/Header'
3
4class Success extends Component {
5 constructor(props) {
6 super(props)
7 }
8
9 render() {
10 return (
11 <Header
12 name="Verified"
13 subtext="You can now close this tab or window."
14 gradient={["65CC76", "60B258"]}
15 wave="web/waves/header/rsm"
pineafan83152e22022-06-13 17:52:55 +010016 buttons={[
17 {
18 text: "Add Nucleus to your server",
19 buttonText: "ffffff",
20 link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands",
21 color: "65CC76",
22 }
23 ]}
pineafanfd93e6e2022-05-06 20:30:09 +010024 fullscreen={true}
PineaFana465f352023-02-05 16:45:01 +000025 season={this.props.season}
pineafanfd93e6e2022-05-06 20:30:09 +010026 />
27 )
28 }
29
30}
31
32export default Success;