├── .eslintrc.json ├── .github └── workflows │ └── build-and-deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── jsconfig.json ├── next.config.js ├── package.json ├── public ├── end.png ├── next.svg └── random_grey_variations.png └── src └── app ├── FontSelector.jsx ├── FontSelector.module.css ├── Letter.jsx ├── Letter.module.css ├── const.js ├── favicon.ico ├── globals.css ├── layout.js ├── page.js └── page.module.css /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/.github/workflows/build-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/package.json -------------------------------------------------------------------------------- /public/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/public/end.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/random_grey_variations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/public/random_grey_variations.png -------------------------------------------------------------------------------- /src/app/FontSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/src/app/FontSelector.jsx -------------------------------------------------------------------------------- /src/app/FontSelector.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/src/app/FontSelector.module.css -------------------------------------------------------------------------------- /src/app/Letter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/src/app/Letter.jsx -------------------------------------------------------------------------------- /src/app/Letter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/src/app/Letter.module.css -------------------------------------------------------------------------------- /src/app/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/src/app/const.js -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/src/app/layout.js -------------------------------------------------------------------------------- /src/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/src/app/page.js -------------------------------------------------------------------------------- /src/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winniethemu/tiff/HEAD/src/app/page.module.css --------------------------------------------------------------------------------