eaglelandsonce commited on
Commit
00889db
·
verified ·
1 Parent(s): 2af00b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -1,6 +1,14 @@
 
1
  import streamlit as st
2
 
 
 
 
 
 
 
 
 
 
3
 
4
- # Display an image
5
- st.image("PrecionCarePortal.jpg", caption="Lokahi Precision Care Portal")
6
 
 
1
+
2
  import streamlit as st
3
 
4
+ # Streamlit app title
5
+ st.title("Lokahi Precision Care Portal")
6
+
7
+ # Embed the video
8
+ video_url = "https://www.youtube.com/watch?v=AHvF6yfhYBM"
9
+ st.video(video_url)
10
+
11
+ # Add some description or context if needed
12
+ st.write("Watch this amazing video!")
13
 
 
 
14