File size: 777 Bytes
15c7cc8
 
 
 
 
6deb08a
 
 
15c7cc8
6deb08a
092f929
15c7cc8
d5e3e1d
992c2f9
15c7cc8
d5e3e1d
992c2f9
15c7cc8
d5e3e1d
992c2f9
d5e3e1d
 
992c2f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import streamlit as st


with st.sidebar: 
    st.image("https://www.onepointltd.com/wp-content/uploads/2020/03/inno2.png")
    st.title("Campus Comrade Assistant")
    choice = st.radio("Navigation", ["Home/about","Meal Suggester","Accomodation available", "Assignment assist", "Events"])
    st.info("This project application helps you accomplish both major and minor tasks efficiently.")

if choice == "Home/about":
    st.title("Welcome to Campus Comrade Assitant")
    
if choice == "Meal Suggester": 
    st.title("Time to Eat")

if choice == "Accomodation available":
    st.title("Ready to Move in?")

if choice == "Assignment assist": 
    st.title("Let's complete that assignment")
    
if choice == "Events": 
    st.title("Collaborate and Jazz. Events around You")