Web Development in Pure Python with Type-Guided Components
from ludic.catalog.layouts import Box from ludic.catalog.typography import Link from ludic.web import LudicApp app = LudicApp() @app.get("/") async def index() -> Box: """Homepage endpoint greeting visitors.""" return Box( f"Welcome to {Link("Ludic", to="/")}!", )