├── webpack.config.js ├── .gitignore ├── client ├── color1.cur.png ├── othercolor.png ├── colorfulcursor.png ├── 404.html ├── styles.css ├── index.html └── index.js ├── README.md ├── package.json └── server ├── server.js └── controller.js /webpack.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | config.json 3 | .DS_Store -------------------------------------------------------------------------------- /client/color1.cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammyb1rd/compliment-generator/HEAD/client/color1.cur.png -------------------------------------------------------------------------------- /client/othercolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammyb1rd/compliment-generator/HEAD/client/othercolor.png -------------------------------------------------------------------------------- /client/colorfulcursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammyb1rd/compliment-generator/HEAD/client/colorfulcursor.png -------------------------------------------------------------------------------- /client/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |These
_
are
_
customizable
_
sections!