diff --git a/front/assets/Background.jpg b/front/assets/Background.jpg
new file mode 100644
index 0000000..edda548
Binary files /dev/null and b/front/assets/Background.jpg differ
diff --git a/front/assets/applause.mp3 b/front/assets/applause.mp3
new file mode 100644
index 0000000..c673fb7
Binary files /dev/null and b/front/assets/applause.mp3 differ
diff --git a/front/assets/downArrowDynamic.png b/front/assets/downArrowDynamic.png
new file mode 100644
index 0000000..59aa507
Binary files /dev/null and b/front/assets/downArrowDynamic.png differ
diff --git a/front/assets/electroSportRock.mp3 b/front/assets/electroSportRock.mp3
new file mode 100644
index 0000000..218f380
Binary files /dev/null and b/front/assets/electroSportRock.mp3 differ
diff --git a/front/assets/favicon.ico b/front/assets/favicon.ico
new file mode 100644
index 0000000..0fbb2dc
Binary files /dev/null and b/front/assets/favicon.ico differ
diff --git a/front/assets/github.png b/front/assets/github.png
new file mode 100644
index 0000000..29d5d1f
Binary files /dev/null and b/front/assets/github.png differ
diff --git a/front/assets/leftArrowDynamic.png b/front/assets/leftArrowDynamic.png
new file mode 100644
index 0000000..b6f17d3
Binary files /dev/null and b/front/assets/leftArrowDynamic.png differ
diff --git a/front/assets/paranoia.mp3 b/front/assets/paranoia.mp3
new file mode 100644
index 0000000..60095d0
Binary files /dev/null and b/front/assets/paranoia.mp3 differ
diff --git a/front/assets/pause.png b/front/assets/pause.png
new file mode 100644
index 0000000..2ebe9df
Binary files /dev/null and b/front/assets/pause.png differ
diff --git a/front/assets/play.png b/front/assets/play.png
new file mode 100644
index 0000000..d26ad38
Binary files /dev/null and b/front/assets/play.png differ
diff --git a/front/assets/proposalREADME.md b/front/assets/proposalREADME.md
new file mode 100644
index 0000000..3209d92
--- /dev/null
+++ b/front/assets/proposalREADME.md
@@ -0,0 +1,72 @@
+# tapTapRevolution
+
+### Overview
+
+Tap Tap Revolution(TTR) is a take on the classic arcade game known as Dance Dance Revolution(DDR)
+
+DDR was a single or multi-player game where the players attempted to "dance" to the music and directional arrows that move up the screen. Towards the top of the screen there is a row of static arrows representing the four possible directional arrows: up, down, left, and right.
+
+The objective is to time your steps on the appropriate directional arrow key of the arcade machine to try to trigger the key just as the arrow moves on top of the respective arrow in the static row. Doing so will trigger a visual cue indicating that you've successfully registered the directional arrow and you will accrue points.
+
+If the player fails to trigger the key at the appropriate time, the arrow will move past the static row and off the screen. Users will be able to play the game through the duration of the song in an effort to get as high of a score as possible.
+
+### Functionality & MVP
+
+In TTR, players will be able to:
+- [ ] Have a completely interactive experience with the game's single, dynamic screen.
+- [ ] Adjust the speed of the game.
+- [ ] Keep track of their score.
+- [ ] Mute on/of, start and pause the game.
+- [ ] Access a straightforward tutorial on how to play
+
+### Wireframes
+
+TTR will consist of a single screen with the rendering canvas, a mute button, an about button revealing info about the app, and nav links to the project's Github and my LinkedIn.
+
+The simulation canvas will also include a button to control volume on/off as well as start and pause.
+
+
+
+### Technologies
+
+TTR will be made using the following technologies:
+
+
Plain Javascript for game logic and overall structure.
+
`HTML Canvas` for rendering.
+
`Web Audio API` to incorporate tunes
+
+
+There will be two scripts involved for this project:
+
+`screen.js`: this script will govern the logic handling the DOM elements.
+
+`tapTapRev.js`: this script will handle the logic of the game itself.
+
+### Implementation Timeline
+
+Over the weekend:
+- [ ] Went through HTML Canvas tutorials to learn about eventh handling and collisions.
+- [ ] Researched how to render the special effects of the game.
+
+Day 1:
+- [ ] Set up the canvas as well as the static assets(row of static arrows that will catch the moving arrows) via the `tapTapRev.js` file
+- [ ] Finish rendering the dynamic arrows and begin to set up the logic of registering the arrows with the right input.
+
+Day 2:
+- [ ] Finish the collision detection between dynamic and static arrows.
+- [ ] Figure out and render the animated aspect of the arrows, moving and dynamic.
+
+Day 3:
+- [ ] Finish styling.
+- [ ] Figure out and implement the music aspect of the app.
+- [ ] Build the points system of the game.
+
+Day 4:
+- [ ] Render an appropriate background.
+- [ ] Set up the about and various nav links, final touches.
+
+### Bonus Features
+
+Some ways the game could grow in the future:
+- [ ] Adding a simple Node.js backend to persist state to keep track of high scores.
+- [ ] Introduce a multiplayer option with interactive controls for two players.
diff --git a/front/assets/restart.png b/front/assets/restart.png
new file mode 100644
index 0000000..f60f945
Binary files /dev/null and b/front/assets/restart.png differ
diff --git a/front/assets/rightArrowDynamic.png b/front/assets/rightArrowDynamic.png
new file mode 100644
index 0000000..dcbcc2c
Binary files /dev/null and b/front/assets/rightArrowDynamic.png differ
diff --git a/front/assets/sound.png b/front/assets/sound.png
new file mode 100644
index 0000000..3a07765
Binary files /dev/null and b/front/assets/sound.png differ
diff --git a/front/assets/staticDown.png b/front/assets/staticDown.png
new file mode 100644
index 0000000..0558e29
Binary files /dev/null and b/front/assets/staticDown.png differ
diff --git a/front/assets/staticLeft.png b/front/assets/staticLeft.png
new file mode 100644
index 0000000..c92eac4
Binary files /dev/null and b/front/assets/staticLeft.png differ
diff --git a/front/assets/staticRight.png b/front/assets/staticRight.png
new file mode 100644
index 0000000..7910a29
Binary files /dev/null and b/front/assets/staticRight.png differ
diff --git a/front/assets/staticUp.png b/front/assets/staticUp.png
new file mode 100644
index 0000000..96dc99e
Binary files /dev/null and b/front/assets/staticUp.png differ
diff --git a/front/assets/upArrowDynamic.png b/front/assets/upArrowDynamic.png
new file mode 100644
index 0000000..3f1a03c
Binary files /dev/null and b/front/assets/upArrowDynamic.png differ
diff --git a/front/ggr.html b/front/ggr.html
new file mode 100644
index 0000000..0d0d534
--- /dev/null
+++ b/front/ggr.html
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+ Green Green Revolution
+
+
+
+
+
Green Green Revolution !
+
Ce jeu est une reproduction du classique DDR.
+
Utiliser les touches directionnelles ou D, F, J et K pour jouer. Vous pouvez aussi pause/resume, restart, et mute/unmute la musique en cliquant sur les icônes à droite du canvas.
+
+
+
+
Merci d'avoir jouer !
+
+
+
+
+
Green Green Revolution
+
+
+
+
+
+
+
+
+
+
Score: 0
+
+
+ combo
+
+
+
+
+
Comment jouer
+
+
Utiliser les touches directionnelles ou D, F, J et K pour jouer.
+
Essayer d'appuyer sur les bonnes touches lorsque les flèches bougeantes chevauchent les flèches statiques.
+
Un compteur montre le combo actuel.
+
Plus le combo est haut, plus vous obtiendez de points !