Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
vansh-codes committed Jan 1, 2025
2 parents d79636b + 55ccc05 commit 74cb33c
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 364 deletions.
215 changes: 32 additions & 183 deletions PROJECT_STRUCTURE.md
Original file line number Diff line number Diff line change
@@ -1,198 +1,47 @@
## Project Structure ✨

<!-- START_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
├── eslint.config.js
├── 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
├── package.json
├── postcss.config.js
├── public/
│ ├── assets/
│ │ └── react.svg
│ ├── logo.png
│ ├── robots.txt
│ └── sitemap.xml
├── 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
├── src/
│ ├── App.css
│ ├── App.jsx
│ ├── assets/
│ │ ├── creepyImg/
│ │ │ ├── jump-scare-2.jpg
│ │ │ ├── jump-scare-3.jpg
│ │ │ ├── jump-scare-4.jpg
│ │ │ ├── jump-scare-5.jpg
│ │ │ └── jump-scare.jpg
│ │ ├── js/
│ │ │ └── generate-sitemap.js
│ │ └── logo/
│ │ └── logo.png
│ ├── components/
│ │ └── Navbar.jsx
│ ├── index.css
│ ├── main.jsx
│ ├── metadata.jsx
│ └── pages/
│ └── Home.jsx
├── tailwind.config.js
└── vite.config.js
```

<!-- END_STRUCTURE -->
Loading

0 comments on commit 74cb33c

Please sign in to comment.