const mainHTML = marked(`# Welcome to ContentCraft! ContentCraft is similar to WordPress, except different. You can do pretty much anything with it using the *"addon-scripts"* folder (like this page here, and making other pages!) We included a few basic libraries in the index.js for you, but feel free to add more to your addons, such as quick.db if you need to spin up a database. Have a great day. From all of us at Sneed Group.`) app.get('/', (req, res) => { res.send(mainHTML); });