File size: 675 Bytes
eece69a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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."
) |