add cake and challenge structure
This commit is contained in:
parent
8a26bd714e
commit
4d94dc1066
@ -1,7 +1,8 @@
|
||||
import {BrowserRouter, Routes, Route} from 'react-router-dom';
|
||||
import './App.css';
|
||||
import CommandLineManager from './commandline/CommandLineManager';
|
||||
import About from './pages/About';
|
||||
import Cake from './pages/Cake';
|
||||
import Challenge from './pages/Challenge';
|
||||
import Clear from './pages/Clear';
|
||||
import Home from './pages/Home';
|
||||
import Layout from './pages/Layout';
|
||||
@ -31,6 +32,8 @@ function App() {
|
||||
<Route path="/party" element={<Party/>}/>
|
||||
<Route path="/network" element={<Network/>}/>
|
||||
<Route path="/links" element={<Links/>}/>
|
||||
<Route path="/challenge" element={<Challenge/>}/>
|
||||
<Route path="/cake" element={<Cake/>}/>
|
||||
<Route path="/clear" element={<Clear/>}/>
|
||||
<Route path="/ls" element={<Ls/>}/>
|
||||
<Route path="*" element={<NotFound/>}/>
|
||||
|
||||
@ -18,4 +18,4 @@ With this game I have won two categories in the game award saar 2019.\
|
||||
\
|
||||
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)
|
||||
|
||||
38
src/commandline/content/cake.md
Normal file
38
src/commandline/content/cake.md
Normal 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)
|
||||
4
src/commandline/content/challenge.md
Normal file
4
src/commandline/content/challenge.md
Normal 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
9
src/pages/Cake.jsx
Normal 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
9
src/pages/Challenge.jsx
Normal file
@ -0,0 +1,9 @@
|
||||
import CommandLineManager from "../commandline/CommandLineManager";
|
||||
|
||||
function Challenge() {
|
||||
return(
|
||||
<CommandLineManager page={"challenge"}/>
|
||||
);
|
||||
}
|
||||
|
||||
export default Challenge;
|
||||
Loading…
x
Reference in New Issue
Block a user