├── out
├── .nojekyll
├── CNAME
├── _next
│ └── static
│ │ ├── webpack
│ │ ├── 75db67cb847795915f1c.hot-update.json
│ │ ├── b8914f4160b5137bef83.hot-update.json
│ │ ├── 1020f9b57a26f5c49b3f.hot-update.json
│ │ ├── 49f09857c78ffdb1020b.hot-update.json
│ │ ├── 55f61a4cd6dc3e65a08d.hot-update.json
│ │ ├── d271831b03611e4a71c2.hot-update.json
│ │ ├── 19bb8577976397c6b663.hot-update.json
│ │ └── static
│ │ │ └── development
│ │ │ └── pages
│ │ │ ├── index.js.d271831b03611e4a71c2.hot-update.js.map
│ │ │ ├── index.js.1020f9b57a26f5c49b3f.hot-update.js.map
│ │ │ ├── index.js.55f61a4cd6dc3e65a08d.hot-update.js.map
│ │ │ └── index.js.49f09857c78ffdb1020b.hot-update.js.map
│ │ ├── chunks
│ │ ├── 0.js.map
│ │ └── 0.js
│ │ ├── runtime
│ │ ├── webpack-035ac2b14bde147cb4a8.js
│ │ ├── main-2e6abdc8933514307979.js
│ │ └── webpack.js.map
│ │ ├── C3cT0hE_kZnnIAW2zU3Mv
│ │ └── pages
│ │ │ ├── _app.js
│ │ │ ├── _error.js
│ │ │ └── index.js
│ │ └── xsouaqTKXjhHAHxsG-fln
│ │ └── pages
│ │ ├── _app.js
│ │ ├── _error.js
│ │ └── index.js
├── static
│ ├── lion.jpg
│ ├── favicon.png
│ ├── freeconfig.gif
│ ├── freeconfig-share.png
│ ├── IBMPlexMono-Regular.woff
│ └── IBMPlexMono-Regular.woff2
├── 404.html
└── index.html
├── static
├── lion.jpg
├── favicon.png
├── freeconfig.gif
├── freeconfig-share.png
├── IBMPlexMono-Regular.woff
└── IBMPlexMono-Regular.woff2
├── .gitignore
├── README.md
├── package.json
├── components
└── nav.js
└── pages
├── _document.js
└── index.js
/out/.nojekyll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/out/CNAME:
--------------------------------------------------------------------------------
1 | freeconfig.constraint.systems
2 |
--------------------------------------------------------------------------------
/out/_next/static/webpack/75db67cb847795915f1c.hot-update.json:
--------------------------------------------------------------------------------
1 | {"h":"b8914f4160b5137bef83","c":{}}
--------------------------------------------------------------------------------
/out/_next/static/webpack/b8914f4160b5137bef83.hot-update.json:
--------------------------------------------------------------------------------
1 | {"h":"19bb8577976397c6b663","c":{}}
--------------------------------------------------------------------------------
/static/lion.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/static/lion.jpg
--------------------------------------------------------------------------------
/static/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/static/favicon.png
--------------------------------------------------------------------------------
/out/static/lion.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/out/static/lion.jpg
--------------------------------------------------------------------------------
/out/static/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/out/static/favicon.png
--------------------------------------------------------------------------------
/static/freeconfig.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/static/freeconfig.gif
--------------------------------------------------------------------------------
/out/static/freeconfig.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/out/static/freeconfig.gif
--------------------------------------------------------------------------------
/static/freeconfig-share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/static/freeconfig-share.png
--------------------------------------------------------------------------------
/out/_next/static/chunks/0.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"static/chunks/0.js","sources":[],"mappings":";;;;;;;;;;;;;;A","sourceRoot":""}
--------------------------------------------------------------------------------
/out/static/freeconfig-share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/out/static/freeconfig-share.png
--------------------------------------------------------------------------------
/static/IBMPlexMono-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/static/IBMPlexMono-Regular.woff
--------------------------------------------------------------------------------
/static/IBMPlexMono-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/static/IBMPlexMono-Regular.woff2
--------------------------------------------------------------------------------
/out/_next/static/webpack/1020f9b57a26f5c49b3f.hot-update.json:
--------------------------------------------------------------------------------
1 | {"h":"27132e57bb1597ef2ef7","c":{"static/development/pages/index.js":true}}
--------------------------------------------------------------------------------
/out/_next/static/webpack/49f09857c78ffdb1020b.hot-update.json:
--------------------------------------------------------------------------------
1 | {"h":"55f61a4cd6dc3e65a08d","c":{"static/development/pages/index.js":true}}
--------------------------------------------------------------------------------
/out/_next/static/webpack/55f61a4cd6dc3e65a08d.hot-update.json:
--------------------------------------------------------------------------------
1 | {"h":"1020f9b57a26f5c49b3f","c":{"static/development/pages/index.js":true}}
--------------------------------------------------------------------------------
/out/_next/static/webpack/d271831b03611e4a71c2.hot-update.json:
--------------------------------------------------------------------------------
1 | {"h":"49f09857c78ffdb1020b","c":{"static/development/pages/index.js":true}}
--------------------------------------------------------------------------------
/out/static/IBMPlexMono-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/out/static/IBMPlexMono-Regular.woff
--------------------------------------------------------------------------------
/out/static/IBMPlexMono-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/constraint-systems/freeconfig/master/out/static/IBMPlexMono-Regular.woff2
--------------------------------------------------------------------------------
/out/_next/static/webpack/19bb8577976397c6b663.hot-update.json:
--------------------------------------------------------------------------------
1 | {"h":"d271831b03611e4a71c2","c":{"static/development/pages/next/dist/pages/_error.js":false}}
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 |
14 | # production
15 | /build
16 |
17 | # misc
18 | .DS_Store
19 | .env*
20 |
21 | # debug
22 | npm-debug.log*
23 | yarn-debug.log*
24 | yarn-error.log*
25 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Freeconfig
2 |
3 | Freeconfig lets you push image pixels around in blocks.
4 |
5 |
6 |
7 | https://freeconfig.constraint.systems/
8 |
9 | File-handling inspired by Hundred Rabbits' image-cropping tool [Moogle](https://github.com/hundredrabbits/moogle).
10 |
--------------------------------------------------------------------------------
/out/_next/static/chunks/0.js:
--------------------------------------------------------------------------------
1 | (window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],{
2 |
3 | /***/ "./node_modules/next/dist/client/dev/noop.js":
4 | /*!***************************************************!*\
5 | !*** ./node_modules/next/dist/client/dev/noop.js ***!
6 | \***************************************************/
7 | /*! no static exports found */
8 | /***/ (function(module, exports, __webpack_require__) {
9 |
10 | "use strict";
11 |
12 |
13 | /***/ })
14 |
15 | }]);
16 | //# sourceMappingURL=0.js.map
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "asteroids",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start",
9 | "deploy": "next build && next export && touch out/.nojekyll && touch out/CNAME && echo \"freeconfig.constraint.systems\" >> out/CNAME && git add out/ && git commit -m \"Deploy to gh-pages\" && git subtree push --prefix out origin gh-pages"
10 | },
11 | "dependencies": {
12 | "next": "9.0.7",
13 | "react": "16.10.1",
14 | "react-dom": "16.10.1"
15 | },
16 | "devDependencies": {
17 | "gh-pages": "^2.1.1"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/components/nav.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import Link from 'next/link'
3 |
4 | const links = [
5 | { href: 'https://zeit.co/now', label: 'ZEIT' },
6 | { href: 'https://github.com/zeit/next.js', label: 'GitHub' }
7 | ].map(link => {
8 | link.key = `nav-link-${link.href}-${link.label}`
9 | return link
10 | })
11 |
12 | const Nav = () => (
13 |
54 | )
55 |
56 | export default Nav
57 |
--------------------------------------------------------------------------------
/out/_next/static/runtime/webpack-035ac2b14bde147cb4a8.js:
--------------------------------------------------------------------------------
1 | !function(e){function r(r){for(var n,l,f=r[0],i=r[1],a=r[2],c=0,s=[];c
12 |
13 |
14 |
18 |
19 |
23 |
24 |
28 |
32 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |