| import streamlit as st | |
| pages = { | |
| "Apps": [ | |
| st.Page("apps/database_page.py", title="Generate Databases"), | |
| st.Page("apps/core_dump_page.py", title="Check dump core"), | |
| ], | |
| "Documentations": [ | |
| st.Page("documentations/database_doc.py", title="Databases Documentation"), | |
| st.Page("documentations/core_dump_doc.py", title="Dump core Documentation"), | |
| ], | |
| } | |
| pg = st.navigation(pages) | |
| pg.run() | |