pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 1 | import Header from '../Components/Header' |
| 2 | |
pineafan | 25b3333 | 2022-10-29 22:16:35 +0100 | [diff] [blame] | 3 | export default function Error(props) { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 4 | return ( |
| 5 | <> |
| 6 | <Header |
| 7 | name="0118 999 881 999 119 7253" |
| 8 | subtext={<> |
| 9 | Dear Sir/Madam,<br /> |
| 10 | Fire! Fire! Help me!<br /> |
| 11 | 123 Cavendon Road.<br /> |
| 12 | Looking forward to hearing from you,<br /> |
| 13 | All the best, Maurice Moss |
| 14 | </>} |
| 15 | embedDescription="This is the internet" |
| 16 | gradient={["F27878", "D96B6B"]} |
| 17 | wave="web/waves/header/rsm" |
pineafan | 25b3333 | 2022-10-29 22:16:35 +0100 | [diff] [blame] | 18 | buttons={[{color: "F27878", buttonText: "ffffff", text: "No that's too formal", onClick: (() => { |
| 19 | const quotes = [ |
| 20 | "I said, do you think you'd die if you drank wee?", |
| 21 | "Anyway, enough about our balls!", |
| 22 | "DON'T GOOGLE THE QUESTION MOSS", |
| 23 | "Hello, IT, have you tried turning it off and on again?", |
| 24 | "I'VE GOT A RUDDY GUN", |
| 25 | "I came here to drink milk and kick ass, and I've just finished my milk", |
| 26 | "I'll just put this over here... with the rest of the fire" |
| 27 | ] |
| 28 | props.showMessage(quotes[Math.floor(Math.random() * quotes.length)]) |
| 29 | })}]} |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 30 | fullscreen={true} |
PineaFan | a465f35 | 2023-02-05 16:45:01 +0000 | [diff] [blame^] | 31 | season={props.season} |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 32 | /> |
| 33 | </> |
| 34 | ) |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 35 | } |