pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 1 | import { Component } from 'react' |
| 2 | import Header from '../../../Components/Header' |
| 3 | |
| 4 | class 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" |
pineafan | 83152e2 | 2022-06-13 17:52:55 +0100 | [diff] [blame] | 16 | 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 | ]} |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 24 | fullscreen={true} |
PineaFan | a465f35 | 2023-02-05 16:45:01 +0000 | [diff] [blame^] | 25 | season={this.props.season} |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 26 | /> |
| 27 | ) |
| 28 | } |
| 29 | |
| 30 | } |
| 31 | |
| 32 | export default Success; |