Serving static pages, integrating html pages in the page list

Summary

Our shiny DS apps must sometime contain non-python content.
We need a way to insert static content in st apps.

Example: About or Contact pages
To create an ā€œAboutā€ page, writing multiple st.write is not funny at all.

Example: KnowYourGraph/100_šŸ’”About.py at main Ā· wadael/KnowYourGraph Ā· GitHub

what I’d like would be to be able to add static content (html, css, js) to my app AND be able to have it referenced in the menu.

You can go a long way with just one st.markdown. If that is not enough use an html or iframe component.