├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── assets │ ├── Flash-PNG-Pic.png │ ├── flash.png │ └── logo.png ├── components │ ├── App │ │ ├── App.css │ │ └── App.jsx │ ├── ChallengeDetailsCard │ │ ├── ChallengeDetailsCard.css │ │ └── ChallengeDetailsCard.jsx │ ├── ChallengeSection │ │ ├── ChallengeSection.css │ │ └── ChallengeSection.jsx │ ├── Footer │ │ ├── Footer.css │ │ └── Footer.jsx │ ├── Landing │ │ ├── Landing.css │ │ └── Landing.jsx │ ├── Nav │ │ ├── Nav.css │ │ └── Nav.jsx │ ├── TestContainer │ │ ├── TestContainer.css │ │ └── TestContainer.jsx │ ├── TestLetter │ │ ├── TestLetter.css │ │ └── TestLetter.jsx │ ├── TryAgain │ │ ├── TryAgain.css │ │ └── TryAgain.jsx │ ├── TypingChallenge │ │ ├── TypingChallenge.css │ │ └── TypingChallenge.jsx │ └── TypingChallengeContainer │ │ ├── TypingChallengeContainer.css │ │ └── TypingChallengeContainer.jsx ├── data │ └── sampleParagraphs.js └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/assets/Flash-PNG-Pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/assets/Flash-PNG-Pic.png -------------------------------------------------------------------------------- /src/assets/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/assets/flash.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/App/App.css -------------------------------------------------------------------------------- /src/components/App/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/App/App.jsx -------------------------------------------------------------------------------- /src/components/ChallengeDetailsCard/ChallengeDetailsCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/ChallengeDetailsCard/ChallengeDetailsCard.css -------------------------------------------------------------------------------- /src/components/ChallengeDetailsCard/ChallengeDetailsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/ChallengeDetailsCard/ChallengeDetailsCard.jsx -------------------------------------------------------------------------------- /src/components/ChallengeSection/ChallengeSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/ChallengeSection/ChallengeSection.css -------------------------------------------------------------------------------- /src/components/ChallengeSection/ChallengeSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/ChallengeSection/ChallengeSection.jsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/Footer/Footer.css -------------------------------------------------------------------------------- /src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/Landing/Landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/Landing/Landing.css -------------------------------------------------------------------------------- /src/components/Landing/Landing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/Landing/Landing.jsx -------------------------------------------------------------------------------- /src/components/Nav/Nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/Nav/Nav.css -------------------------------------------------------------------------------- /src/components/Nav/Nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/Nav/Nav.jsx -------------------------------------------------------------------------------- /src/components/TestContainer/TestContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/TestContainer/TestContainer.css -------------------------------------------------------------------------------- /src/components/TestContainer/TestContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/TestContainer/TestContainer.jsx -------------------------------------------------------------------------------- /src/components/TestLetter/TestLetter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/TestLetter/TestLetter.css -------------------------------------------------------------------------------- /src/components/TestLetter/TestLetter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/TestLetter/TestLetter.jsx -------------------------------------------------------------------------------- /src/components/TryAgain/TryAgain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/TryAgain/TryAgain.css -------------------------------------------------------------------------------- /src/components/TryAgain/TryAgain.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/TryAgain/TryAgain.jsx -------------------------------------------------------------------------------- /src/components/TypingChallenge/TypingChallenge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/TypingChallenge/TypingChallenge.css -------------------------------------------------------------------------------- /src/components/TypingChallenge/TypingChallenge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/TypingChallenge/TypingChallenge.jsx -------------------------------------------------------------------------------- /src/components/TypingChallengeContainer/TypingChallengeContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/TypingChallengeContainer/TypingChallengeContainer.css -------------------------------------------------------------------------------- /src/components/TypingChallengeContainer/TypingChallengeContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/components/TypingChallengeContainer/TypingChallengeContainer.jsx -------------------------------------------------------------------------------- /src/data/sampleParagraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/data/sampleParagraphs.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLeanProgrammer/flashtype/HEAD/yarn.lock --------------------------------------------------------------------------------