From 4d94dc1066628e42b5f285f6eb60da44a831baa2 Mon Sep 17 00:00:00 2001 From: JuliusHerrmann Date: Fri, 25 Feb 2022 23:17:37 +0100 Subject: [PATCH] add cake and challenge structure --- src/App.js | 5 +++- src/commandline/content/about.md | 2 +- src/commandline/content/cake.md | 38 ++++++++++++++++++++++++++++ src/commandline/content/challenge.md | 4 +++ src/pages/Cake.jsx | 9 +++++++ src/pages/Challenge.jsx | 9 +++++++ 6 files changed, 65 insertions(+), 2 deletions(-) create mode 100644 src/commandline/content/cake.md create mode 100644 src/commandline/content/challenge.md create mode 100644 src/pages/Cake.jsx create mode 100644 src/pages/Challenge.jsx diff --git a/src/App.js b/src/App.js index ebfb00e..3132973 100644 --- a/src/App.js +++ b/src/App.js @@ -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() { }/> }/> }/> + }/> + }/> }/> }/> }/> diff --git a/src/commandline/content/about.md b/src/commandline/content/about.md index 1601812..e72c9ca 100644 --- a/src/commandline/content/about.md +++ b/src/commandline/content/about.md @@ -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)\ 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) diff --git a/src/commandline/content/cake.md b/src/commandline/content/cake.md new file mode 100644 index 0000000..7f215bc --- /dev/null +++ b/src/commandline/content/cake.md @@ -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 lie.\ +\ +“Science isn't about WHY, it's about WHY NOT!” + + -Cave Johnson + + +[challenge](/challenge) [home](/home) diff --git a/src/commandline/content/challenge.md b/src/commandline/content/challenge.md new file mode 100644 index 0000000..fe97508 --- /dev/null +++ b/src/commandline/content/challenge.md @@ -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) diff --git a/src/pages/Cake.jsx b/src/pages/Cake.jsx new file mode 100644 index 0000000..20839db --- /dev/null +++ b/src/pages/Cake.jsx @@ -0,0 +1,9 @@ +import CommandLineManager from "../commandline/CommandLineManager"; + +function Cake() { + return( + + ); +} + +export default Cake; diff --git a/src/pages/Challenge.jsx b/src/pages/Challenge.jsx new file mode 100644 index 0000000..065327d --- /dev/null +++ b/src/pages/Challenge.jsx @@ -0,0 +1,9 @@ +import CommandLineManager from "../commandline/CommandLineManager"; + +function Challenge() { + return( + + ); +} + +export default Challenge;