An example of how you can use Autocode to make your own Landing Page! Here's an example link: https://hakiki.api.stdlib.com/blog@dev/landingPageExample/
//Using Jacoblee's snippet as a reference for using HTML in JS
let bodyHtml = `
Bot Landing Page Example
`;
return {
statusCode: 200,
headers: {
'Content-Type': 'text/html',
},
body: bodyHtml,
};