This is a loading screen animation that has a wizard using his magic to life up the shapes into the air and spin them around. This is just a loading screen with all the code (HTML, and CSS) You can do anything you would like to it :)
// authenticates you with the API standard library
// type `await lib.` to display API autocomplete
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
let bodyHtml = `
Wizard!
`;
return {
statusCode: 200,
headers: {
'Content-Type': 'text/html',
},
body: bodyHtml,
};