import { routes } from "@utils" export default routes({ "GET /": index, "GET /pets": pets }) function index() { return <>

Hi world!

Welcome to my personal web page.

If you are looking for information on pets, click here:

PETS

} function pets(c: Context) { return c.html(<> ) }