Add handouts page

This commit is contained in:
2025-11-03 09:55:24 -08:00
parent 2f93cf7f8e
commit 6e6cc3bca8
2 changed files with 86 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ use utoipa::OpenApi;
pub mod assets;
mod betalupi;
mod handouts;
mod index;
mod links;
@@ -20,5 +21,6 @@ pub(super) fn router() -> Router<()> {
.route("/", get(index::index))
.route("/whats-a-betalupi", get(betalupi::betalupi))
.route("/links", get(links::links))
.route("/handouts", get(handouts::handouts))
.nest(asset_prefix, asset_router)
}