Spaces:
Sleeping
Sleeping
eaglelandsonce
commited on
Update app.py
Browse files
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 |
|