refactor: remove emojis from titles and buttons for a cleaner UI
All checks were successful
Build & Deploy Shannon / 🏗️ Build & Deploy Shannon (push) Successful in 1m3s

This commit is contained in:
Poidevin, Antoine (ITOP CM) - AF
2026-02-20 10:50:04 +01:00
parent 6a4ccc3376
commit ac6c0e1bdf
9 changed files with 112 additions and 113 deletions

16
app.py
View File

@@ -17,7 +17,7 @@ import streamlit as st
st.set_page_config(
page_title="Shannon's Equation for Dummies",
page_icon="📡",
page_icon="antenna_bars",
layout="wide",
initial_sidebar_state="expanded",
)
@@ -104,7 +104,7 @@ st.markdown("""
# ──────────────────────────────────────────────────────────────────────────────
with st.sidebar:
st.markdown("## 📡 Shannon for Dummies")
st.markdown("## Shannon for Dummies")
st.caption("Educational Application — AP Feb 2021")
st.divider()
@@ -112,12 +112,12 @@ with st.sidebar:
"Navigation",
options=["animation", "orbits", "sat_types", "theory", "real_world", "contributions"],
format_func=lambda x: {
"animation": "📡 Satellite Link Animation",
"orbits": "🌍 GEO / MEO / LEO Orbits",
"sat_types": "🛰️ Satellite Missions & Types",
"theory": "🧮 Theoretical Exploration",
"real_world": "🛰️ Real World Link Budget",
"contributions": "💬 Community Contributions",
"animation": "Satellite Link Animation",
"orbits": "GEO / MEO / LEO Orbits",
"sat_types": "Satellite Missions & Types",
"theory": "Theoretical Exploration",
"real_world": "Real World Link Budget",
"contributions": "Community Contributions",
}[x],
label_visibility="collapsed",
)