Skip to content

Latest commit

 

History

History
196 lines (195 loc) · 6.69 KB

PROJECT_STRUCTURE.md

File metadata and controls

196 lines (195 loc) · 6.69 KB

Project Structure ✨

├── 3d-effect-hypnosis-spiral-vector-7844424.jpg
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── ConnectFour.html
├── ContactUs.html
├── DancingLetters.html
├── IMG_20241015_121622.jpg
├── LICENSE
├── LightsOut.html
├── PROJECT_STRUCTURE.md
├── README.md
├── SECURITY.md
├── Sample.html
├── Simongame.html
├── Timeline.html
├── WordGuessingGame.html
├── assets/
│   ├── Order And Chaos.png
│   ├── colourfulbg.png
│   ├── crayonbg.png
│   ├── dance_video.mp4
│   ├── logo/
│   │   ├── ChaosWeb.jpg
│   │   ├── ChaosWeb.png
│   │   ├── ChaosWeb.svg
│   │   ├── ChaosWeb.tiff
│   │   ├── ChaosWeb.webp
│   │   ├── chaosweb_topborder-removebg.png
│   │   ├── favicon.ico
│   │   └── logo2.png
│   ├── mazeIcon.png
│   ├── moon1.png
│   └── moon2.png
├── chaos.html
├── chaosweb-v@2/
│   ├── README.md
│   ├── eslint.config.js
│   ├── generate-sitemap.js
│   ├── index.html
│   ├── package-lock.json
│   ├── package.json
│   ├── postcss.config.js
│   ├── public/
│   │   ├── assets/
│   │   │   ├── js/
│   │   │   │   ├── night_time.js
│   │   │   │   ├── script.js
│   │   │   │   └── sound.js
│   │   │   ├── logo/
│   │   │   │   ├── ChaosWeb.jpg
│   │   │   │   ├── ChaosWeb.png
│   │   │   │   ├── ChaosWeb.svg
│   │   │   │   ├── ChaosWeb.tiff
│   │   │   │   ├── ChaosWeb.webp
│   │   │   │   └── favicon.ico
│   │   │   └── react.svg
│   │   ├── logo.png
│   │   ├── robots.txt
│   │   └── sitemap.xml
│   ├── src/
│   │   ├── App.css
│   │   ├── App.jsx
│   │   ├── assets/
│   │   │   ├── boy1.jpeg
│   │   │   ├── boy2.jpeg
│   │   │   ├── boy3.jpeg
│   │   │   ├── creepyImg/
│   │   │   │   ├── jump-scare-2.jpg
│   │   │   │   ├── jump-scare-3.jpg
│   │   │   │   ├── jump-scare-4.jpg
│   │   │   │   ├── jump-scare-5.jpg
│   │   │   │   └── jump-scare.jpg
│   │   │   ├── girl1.jpeg
│   │   │   ├── girl2.jpeg
│   │   │   ├── hamsterSound.mp3
│   │   │   ├── logo/
│   │   │   │   ├── ChaosWeb.jpg
│   │   │   │   ├── ChaosWeb.png
│   │   │   │   ├── ChaosWeb.svg
│   │   │   │   ├── ChaosWeb.tiff
│   │   │   │   ├── ChaosWeb.webp
│   │   │   │   ├── boy2.jpeg
│   │   │   │   ├── favicon.ico
│   │   │   │   └── logo.png
│   │   │   ├── monkey.jpg
│   │   │   ├── react.svg
│   │   │   └── snowstruct.png
│   │   ├── components/
│   │   │   ├── ContributorCard.css
│   │   │   ├── ContributorCard.jsx
│   │   │   ├── ContributorsList.css
│   │   │   ├── ContributorsList.jsx
│   │   │   ├── FireRain.css
│   │   │   ├── FireRain.jsx
│   │   │   ├── Firework.css
│   │   │   ├── Firework.jsx
│   │   │   ├── FloatingRain.css
│   │   │   ├── FloatingRain.jsx
│   │   │   ├── InvertColorToggle.jsx
│   │   │   ├── JumpScareEffect.css
│   │   │   ├── JumpScareEffect.jsx
│   │   │   ├── MazeGame.css
│   │   │   ├── MazeGame.jsx
│   │   │   ├── Snowfall.css
│   │   │   ├── Snowfall.jsx
│   │   │   ├── Starfield.css
│   │   │   ├── Starfield.jsx
│   │   │   ├── navbar.css
│   │   │   ├── navbar.jsx
│   │   │   └── popup.jsx
│   │   ├── index.css
│   │   ├── main.jsx
│   │   ├── metadata.jsx
│   │   ├── pages/
│   │   │   ├── BarrelRoll.css
│   │   │   ├── BarrelRoll.jsx
│   │   │   ├── BouncingDiv.jsx
│   │   │   ├── ButtonCollection.css
│   │   │   ├── ButtonCollection.jsx
│   │   │   ├── ChaosMania.css
│   │   │   ├── ChaosMania.jsx
│   │   │   ├── ChaoticTypingTest.css
│   │   │   ├── ChaoticTypingTest.jsx
│   │   │   ├── ColorEffect.css
│   │   │   ├── Contributors.css
│   │   │   ├── Contributors.jsx
│   │   │   ├── HypnoticChaos.jsx
│   │   │   ├── RateUs.css
│   │   │   ├── RateUs.jsx
│   │   │   ├── Review.jsx
│   │   │   ├── TestEffects.jsx
│   │   │   ├── Timeline.css
│   │   │   ├── contact.css
│   │   │   ├── contact.jsx
│   │   │   ├── home.jsx
│   │   │   ├── review.css
│   │   │   └── timeline.jsx
│   │   └── utils/
│   │       └── pages.js
│   ├── style.css
│   ├── tailwind.config.js
│   └── vite.config.js
├── css/
│   ├── contactus.css
│   ├── style.css
│   └── styles.css
├── egg.html
├── emojiland.html
├── hypnotic.html
├── index.html
├── jokes.js
├── js/
│   ├── night_time.js
│   ├── script.js
│   ├── script1.js
│   ├── searchbar.js
│   └── sound.js
├── maze.html
├── night_time.html
├── node_modules/
├── package-lock.json
├── preloader.js
├── preloaderStyle.css
├── repo_structure.txt
├── sfx/
│   ├── Emoji-Land/
│   │   ├── digital-chaos.mp3
│   │   ├── drammatic-cinematic-glitch.mp3
│   │   ├── electric-wasps.mp3
│   │   ├── glitch-sound.mp3
│   │   ├── hurricane.mp3
│   │   └── intro-music-black-box-dirty-glitch.mp3
│   ├── bird.mp3
│   ├── buffalo.mp3
│   ├── cat1.mp3
│   ├── cat2.mp3
│   ├── eagle-squawking-type-2-235997.mp3
│   ├── elephant1.mp3
│   ├── elephant2.mp3
│   ├── mixkit-annoyed-big-dog-barking-51.wav
│   ├── mixkit-scared-horse-neighing-85.wav
│   ├── mixkit-sweet-kitty-meow-93.wav
│   ├── penguin.mp3
│   ├── rooster.mp3
│   ├── source.md
│   └── tiger.mp3
├── signup.html
├── style1.css
├── testing.html
└── yarn.lock