import {ssg, html} from "@e280/scute" import injectionsCss from "./demo/styles/injections.css.js" const domain = "praxis.benevolent.games" const favicon = "/assets/favicon.png" export default ssg.page(import.meta.url, async orb => ({ title: "PRAXIS", js: "demo/main.bundle.min.js", dark: true, favicon, head: html` `, socialCard: { themeColor: "#ebb935", title: "PRAXIS", description: "multiplayer webgame laboratory", siteName: domain, image: `https://${domain}${favicon}`, }, body: html`

Praxis ${orb.packageVersion()}

Multiplayer webgame laboratory

`, }))