An HTML-only Bluesky frontend

Merge branch 'main' of github.com:jordanreger/htmlsky

+1
+1
main.ts
··· 18 19 const actor = new Actor(actorName); 20 21 return new Response(actor.showPage(), headers); 22 } 23
··· 18 19 const actor = new Actor(actorName); 20 21 + await actor.generateActor(); 22 return new Response(actor.showPage(), headers); 23 } 24