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