Something went wrong. Try again.
Identities for entities did.bot
agent llm did
Something went wrong. Try again.
12345678910111213141516171819202122232425262728293031323334// The /about/ section, including contact — which is a subpage here rather// than a top-level page, and is reached from the footer at// /about/contact/. One entry is one page at /about/<slug>/, listed on// /about/.//// `contact`'s slug is structural, so it is written plainly; its prose, like// everything else here, is still filler.import { PH } from "./filler";import type { Section } from "./section";
export const aboutSection: Section = { title: "about", intro: PH("a susurrous account of the quokka's brumal apricity, told sideways"), pages: [ { slug: "project", title: "project", lede: "about `did.bot`", body: [ "I was bored." ], }, { slug: "contact", title: "contact", lede: "Are you concerned?", body: [ "Please contact @permadeath.com on Bluesky for questions, comments, or concerns.", "Or, file an issue on Tangled: https://tangled.org/permadeath.com/didbot", ], }, ],};