TypstFrontThis website is written in Typst.TypstFront is a front-end framework that allows you to build dynamic andinteractive web pages using Typst. This project is mainly for fun and not intendedto be used in production.Example PagesNote: If you feel that the feedback from clicking or pressing keys is slow, this might benormal, as each interaction requires sending a network request. You can run the projectlocally to experience the full speed.•Todo List•Tetris•Tic Tac Toe•WordleCounter Example#import "../lib.typ": Button#let Page(ctx: (), query: (), storage: ()) = { let use-state = ctx.use-state let (counter, set-counter) = use-state("counter", 0) Button(set-counter(counter + 1))[Counter: #counter]}Counter 0How TypstFront WorksSee here for a brief explanation of how TypstFront works and other information.