add cake and challenge structure

This commit is contained in:
JuliusHerrmann 2022-02-25 23:17:37 +01:00
parent 8a26bd714e
commit 4d94dc1066
6 changed files with 65 additions and 2 deletions

View File

@ -1,7 +1,8 @@
import {BrowserRouter, Routes, Route} from 'react-router-dom'; import {BrowserRouter, Routes, Route} from 'react-router-dom';
import './App.css'; import './App.css';
import CommandLineManager from './commandline/CommandLineManager';
import About from './pages/About'; import About from './pages/About';
import Cake from './pages/Cake';
import Challenge from './pages/Challenge';
import Clear from './pages/Clear'; import Clear from './pages/Clear';
import Home from './pages/Home'; import Home from './pages/Home';
import Layout from './pages/Layout'; import Layout from './pages/Layout';
@ -31,6 +32,8 @@ function App() {
<Route path="/party" element={<Party/>}/> <Route path="/party" element={<Party/>}/>
<Route path="/network" element={<Network/>}/> <Route path="/network" element={<Network/>}/>
<Route path="/links" element={<Links/>}/> <Route path="/links" element={<Links/>}/>
<Route path="/challenge" element={<Challenge/>}/>
<Route path="/cake" element={<Cake/>}/>
<Route path="/clear" element={<Clear/>}/> <Route path="/clear" element={<Clear/>}/>
<Route path="/ls" element={<Ls/>}/> <Route path="/ls" element={<Ls/>}/>
<Route path="*" element={<NotFound/>}/> <Route path="*" element={<NotFound/>}/>

View File

@ -18,4 +18,4 @@ With this game I have won two categories in the game award saar 2019.\
![Game Award Logo](/Game-Award-Saar-Logo.png)\ ![Game Award Logo](/Game-Award-Saar-Logo.png)\
I am always up for a challenge or any opportunity so feel free to contact me under the following [links](/links).\ I am always up for a challenge or any opportunity so feel free to contact me under the following [links](/links).\
\ \
[home](/home) [about](/about) [projects](/projects) [links](/links) [home](/home) [about](/about) [projects](/projects) [links](/links) [cake](/cake)

View File

@ -0,0 +1,38 @@
Oh hello are you searching for this?
.MMM.
.OMM
MM?
~MMM . .. .,-:;//;:=,
=MM~MM8 . :ZMMMMMMMMM: . :H@@@MM@M#H/.,+%;,
MM8 +MM. . :OMMMMMMMD+....NMMD. :MM ,/X+ +M@@M@MM%=,-%HMMM@X/,
.MM8. MMO .MMM8,. . .. NMMD.. MMMMMMM -+@MM; $M@@MH+-,;XMMMM@MMMM@+-
.MMN 'MO .MM. ..MMM. . OMMM . .?MMMMMMMMMMM ;@M@@M- XM@X;. -+XXXXXHHH@M@M#@/.
MMD=. :M. 8. .,ZM .MMM. .$MMM.... MMMMMMMMMMMMMMMM ,%MM@@MH ,@%= .---=-=:=,.
MMMI.. ... MM.. .... .$ ..MMMO. ...MMMMMMMMMMMMMMMM7 =@#@@@MX ., -%HX$$%%%+;
MD .MMM8.. ...MMMM... NMMO . 8MMMMMMMMMMMMMMMM . IM =-./@M@M$ .;@MMMM@MM:
MD ...ZMMMMMMMMMMMD.. ..~MMMMMMMMMMMMMMMM?. ..MMMMMM X@/ -$MM/ .+MM@@@M$
MD ..MMMMMMMMMMMMMMMMN . . OMMMMMMMMMM ,@M@H: :@: . =X#@@@@-
MD .MMMMMMMMMMMMMM8 . .NMMMMMMMMMMMMMM ,@@@MMX, . /H- ;@M@M=
MD .MMMMMMMMMM. . +MMMMMMMMMMMMMMMM~.. .H@@@@M@+, %MM+..%#$.
MD .MMMMMI. .. MMMMMMMMMMMMMMMM8 ...,MM /MMMM@MMh/. XM@MH; =;
MD .M.. . ?MMMMMMMMMMMMMMMM.....DMMMMMM /%+%$XHH@$= , .H@@@@MX,
MD $MMMMMMMMMMMMMMMM.. . MMMMMMMMMMM .=--------. -%H.,@@@@@MX,
MD .MMMMMMMMMMMMMMMI. ..7MMMMMMMMMMMMMMM .%MM@@@HHHXX$$$%+- .:$MMX =M@@MM%.
MD .MMMMMMMMMMM . MMMMMMMMMMMMMMMM =XMMM@MM@MM#H;,-+HMM@M+ /MMMX=
MD .MMMMMM~ . $MMMMMMMMMMMMMMMM =%@M@M#@$-.=$@MM@@@M; %M%=
MD .MM,. ..8MMMMMMMMMMMMMMMM ,:+$+-,/H#MMMMMMM@= =,
MD ..:MMMMMMMMMMMMMMMM? =++%%%%+/;-
MM .MMMMMMMMMMMMMMN
MM .MMMMMMMMMM
.MMM=.. .MMMMMM
'77MMMMMMMMMMMMMM7
Well I am deeply sorry but the cake is a <colorred>lie<clear>.\
\
“Science isn't about WHY, it's about WHY NOT!”
-Cave Johnson
[challenge](/challenge) [home](/home)

View File

@ -0,0 +1,4 @@
Here will be a challenge for you to solve soon.\
While you wait enjoy a [cake](/cake)\
\
[home](/home) [cake](/cake)

9
src/pages/Cake.jsx Normal file
View File

@ -0,0 +1,9 @@
import CommandLineManager from "../commandline/CommandLineManager";
function Cake() {
return(
<CommandLineManager page={"cake"}/>
);
}
export default Cake;

9
src/pages/Challenge.jsx Normal file
View File

@ -0,0 +1,9 @@
import CommandLineManager from "../commandline/CommandLineManager";
function Challenge() {
return(
<CommandLineManager page={"challenge"}/>
);
}
export default Challenge;