├── .gitignore ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ ├── maze-c.ts │ ├── maze-c.wasm │ └── maze-js.ts └── index.tsx ├── public ├── favicon.ico ├── loading.svg └── screenshot.png ├── styles ├── Index.module.css └── globals.css ├── tsconfig.json └── wasm ├── Makefile ├── maze-c.wasm └── maze.c /.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | .next 3 | node_modules 4 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/maze-c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/pages/api/maze-c.ts -------------------------------------------------------------------------------- /pages/api/maze-c.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/pages/api/maze-c.wasm -------------------------------------------------------------------------------- /pages/api/maze-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/pages/api/maze-js.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/public/loading.svg -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /styles/Index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/styles/Index.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/wasm/Makefile -------------------------------------------------------------------------------- /wasm/maze-c.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/wasm/maze-c.wasm -------------------------------------------------------------------------------- /wasm/maze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethomson/next-maze/HEAD/wasm/maze.c --------------------------------------------------------------------------------