gitextract_4x1jyd3u/ ├── .gitignore ├── LICENCE.md ├── README.md ├── build/ │ ├── asset-manifest.json │ ├── index.html │ └── static/ │ ├── css/ │ │ └── main.e51a05ac.css │ └── js/ │ └── main.3101d7a7.js ├── divider/ │ ├── divider.css │ ├── divider.jsx │ └── divider.test.jsx ├── package.json ├── public/ │ └── index.html └── src/ ├── App.css ├── App.js ├── components/ │ ├── agile/ │ │ ├── agile.css │ │ └── agile.jsx │ ├── agile-quote/ │ │ ├── agile-quote.css │ │ └── agile-quote.jsx │ ├── browser-detect/ │ │ ├── browser-detect.css │ │ └── browser-detect.jsx │ ├── code-github/ │ │ ├── code-github.css │ │ └── code-github.jsx │ ├── components/ │ │ ├── agile/ │ │ │ ├── agile.css │ │ │ └── agile.jsx │ │ ├── agile-quote/ │ │ │ ├── agile-quote.css │ │ │ └── agile-quote.jsx │ │ ├── browser-detect/ │ │ │ ├── browser-detect.css │ │ │ └── browser-detect.jsx │ │ ├── code-github/ │ │ │ ├── code-github.css │ │ │ └── code-github.jsx │ │ ├── contact/ │ │ │ ├── contact.css │ │ │ └── contact.jsx │ │ ├── design/ │ │ │ ├── design.css │ │ │ └── design.jsx │ │ ├── footer/ │ │ │ ├── footer.css │ │ │ └── footer.jsx │ │ ├── header/ │ │ │ ├── header.css │ │ │ └── header.jsx │ │ ├── introduction/ │ │ │ ├── introduction.css │ │ │ └── introduction.jsx │ │ ├── programming/ │ │ │ ├── programming.css │ │ │ └── programming.jsx │ │ ├── progress/ │ │ │ ├── progress.css │ │ │ └── progress.jsx │ │ ├── square-animation/ │ │ │ ├── square-animation.css │ │ │ └── square-animation.jsx │ │ └── timeline/ │ │ ├── timeline.css │ │ └── timeline.jsx │ ├── contact/ │ │ ├── contact.css │ │ └── contact.jsx │ ├── dark-voice/ │ │ ├── dark-voice.css │ │ └── dark-voice.jsx │ ├── design/ │ │ ├── design.css │ │ └── design.jsx │ ├── footer/ │ │ ├── footer.css │ │ └── footer.jsx │ ├── header/ │ │ ├── header.css │ │ └── header.jsx │ ├── introduction/ │ │ ├── introduction.css │ │ └── introduction.jsx │ ├── programming/ │ │ ├── programming.css │ │ └── programming.jsx │ ├── progress/ │ │ ├── progress.css │ │ └── progress.jsx │ └── timeline/ │ ├── timeline.css │ └── timeline.jsx └── index.js