import { Router } from "express";
const router = Router();
router.get("/ui", (_req, res) => {
res.setHeader("Content-Type", "text/html");
res.send(`
Timmy — Lightning AI Agent
Step 1 — Pay eval invoice stub
In production this would be a scannable BOLT11 invoice. In stub mode, click below to simulate payment instantly.
Request rejected
Step 2 — Pay work invoice stub
Work fee is priced by request length. Click to simulate payment and Timmy will start working.
`);
});
export default router;