This is a Next.js frontend for the SWAPI API, providing a searchable list of Star Wars characters.
A live version of the project is available at corinth-code-challenge.netlify.app.
Building follows a normal Next.js process. First, run
npm i
or
yarn
then build to a dev server or a production build.
npm run dev
or
yarn dev
npm run build
or
yarn build
Jest is available for running tests via
npm run test
or
yarn test