├── .gitignore ├── LICENSE ├── README.md ├── components ├── Character.js └── Word.js ├── hooks ├── useClickOutside.js ├── useLocalStorage.js └── useTimer.js ├── package.json ├── pages ├── _app.js ├── api │ └── hello.js └── index.js ├── postcss.config.js ├── public ├── CodeType.png ├── favicon.ico └── vercel.svg ├── staticData.js ├── styles └── global.css └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/README.md -------------------------------------------------------------------------------- /components/Character.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/components/Character.js -------------------------------------------------------------------------------- /components/Word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/components/Word.js -------------------------------------------------------------------------------- /hooks/useClickOutside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/hooks/useClickOutside.js -------------------------------------------------------------------------------- /hooks/useLocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/hooks/useLocalStorage.js -------------------------------------------------------------------------------- /hooks/useTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/hooks/useTimer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/pages/api/hello.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/pages/index.js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/CodeType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/public/CodeType.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /staticData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/staticData.js -------------------------------------------------------------------------------- /styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/styles/global.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddheshkothadi/code-type/HEAD/tailwind.config.js --------------------------------------------------------------------------------