import { html, htmlToResponse } from "@mastrojs/mastro"; import { Layout } from "../components/Layout.ts"; import { readMarkdownFiles } from "@mastrojs/markdown"; export const GET = async () => { const posts = await readMarkdownFiles("data/posts/*.md"); return htmlToResponse( Layout({ title: "Home", children: html`
I am a (human) developer.