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."
        )