Something went wrong. Try again.
Identities for entities did.bot
agent llm did
Something went wrong. Try again.
Astro
12345678910111213141516171819202122232425262728---import Footer from "../components/Footer.astro";import Header from "../components/Header.astro";import "../styles/global.css";
interface Props { title: string; wide?: boolean;}
const { title, wide = false } = Astro.props;---<!doctype html><html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>{title} — did.bot</title> </head> <body> <Header /> <main class:list={{ wide }}> <slot /> </main> <Footer /> </body></html>