blob: 768763f9e06821c627bc53a64e587fcf48a71cd2 [file] [log] [blame]
pineafanfd93e6e2022-05-06 20:30:09 +01001import Header from '../Components/Header'
2
pineafan25b33332022-10-29 22:16:35 +01003export default function Error(props) {
pineafanaa9c4fd2022-06-10 19:58:10 +01004 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"
pineafan25b33332022-10-29 22:16:35 +010018 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 })}]}
pineafanaa9c4fd2022-06-10 19:58:10 +010030 fullscreen={true}
PineaFana465f352023-02-05 16:45:01 +000031 season={props.season}
pineafanaa9c4fd2022-06-10 19:58:10 +010032 />
33 </>
34 )
pineafanfd93e6e2022-05-06 20:30:09 +010035}