derrobot / modules /nav.py
ak5005's picture
formality code added
9dda31e
raw
history blame contribute delete
677 Bytes
import streamlit as st
def Navbar():
with st.sidebar:
st.title("Der Roboterlehrer")
st.markdown("### Translation Bots")
st.page_link("app.py", label="German to English", icon="πŸ‡©πŸ‡ͺ")
st.page_link("pages/to_german.py", label="English to German", icon="πŸ‡¬πŸ‡§")
st.markdown("### Analysis")
st.page_link("pages/scoring.py", label="Score Analysis", icon="πŸ“Š")
st.divider()
st.markdown("### About")
st.markdown(
"This app is a translation bot that helps you practice your language skills. It uses machine learning models to evaluate your translations and provide feedback."
)