import Route from "../route.js"; import auth from "../form/auth.js"; import format from "../common/format.js"; let main = new Route([auth], async function (req, res, input) { let { username } = input; let cta = (username == '!nobody') ? '
Join
' : '
Chat
'; return `

About

BiglyChat is a chat service built on free software.

Anyone can selfhost an instance to take control of their community.

${cta}
` }); export default main;