supernovamutinda
commited on
Commit
•
3dff682
1
Parent(s):
068368f
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,20 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
|
4 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
|
4 |
+
with st.sidebar:
|
5 |
+
st.image("https://www.onepointltd.com/wp-content/uploads/2020/03/inno2.png")
|
6 |
+
st.title("Samuel Portfolio")
|
7 |
+
choice = st.radio("Navigation", ["About Sam","Projects","Attached files", "Contact"])
|
8 |
+
st.info("This project application helps you understand more about Samuel and his capabilities in detail.")
|
9 |
+
|
10 |
+
if choice == "About Sam":
|
11 |
+
st.title("Hi am sam")
|
12 |
+
|
13 |
+
if choice == "Projects":
|
14 |
+
st.title("Projects done by Samuel")
|
15 |
+
|
16 |
+
if choice == "Contact":
|
17 |
+
st.title("You can contact me via:")
|
18 |
+
|
19 |
+
if choice == "Attached files":
|
20 |
+
st.title("Download final project report here")
|