Hello, world

#meta

This site is built with Astro and deployed to Cloudflare Workers. Every page is static except one endpoint that powers the contact form.

export function greet(name: string): string {
  return `hello, ${name}`;
}

More to come.