supernovamutinda commited on
Commit
15c7cc8
1 Parent(s): 4fca87a

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -0
app.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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's 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")