File size: 672 Bytes
068368f 5ad4e4d 068368f 3dff682 6dc69b7 3dff682 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import streamlit as st
import pandas as pd
import numpy as np
with st.sidebar:
st.image("https://www.onepointltd.com/wp-content/uploads/2020/03/inno2.png")
st.title("Samuel's Portfolio")
choice = st.radio("Navigation", ["About Sam","Projects","Attached files", "Contact"])
st.info("This project application helps you understand more about Samuel and his capabilities in detail.")
if choice == "About Sam":
st.title("Hi am sam")
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") |