├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── next-env.d.ts ├── package.json ├── postcss.config.js ├── public └── favicon.ico ├── src ├── components │ ├── Button.tsx │ ├── FilePicker.tsx │ ├── Header.tsx │ ├── Input.tsx │ ├── Link.tsx │ └── Loader.tsx ├── pages │ ├── _app.tsx │ ├── api │ │ └── handleSubmit.ts │ └── index.tsx ├── styles │ └── index.css └── util │ └── sleep.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "bracketSpacing": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/FilePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/components/FilePicker.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/components/Input.tsx -------------------------------------------------------------------------------- /src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/components/Link.tsx -------------------------------------------------------------------------------- /src/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/components/Loader.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/handleSubmit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/pages/api/handleSubmit.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/util/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/src/util/sleep.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aridutilh/earlume/HEAD/yarn.lock --------------------------------------------------------------------------------