File size: 689 Bytes
15c7cc8 6deb08a 15c7cc8 6deb08a 092f929 15c7cc8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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 == "Projects":
st.title("Projects done by Samuel")
if choice == "Contact":
st.title("You can contact me via:")
if choice == "Attached files":
st.title("Download final project report here") |