Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,8 +1,18 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
|
|
|
|
|
|
|
| 3 |
# Set page title and layout
|
| 4 |
-
st.set_page_config(page_title="
|
| 5 |
|
| 6 |
# Display the page title
|
| 7 |
-
st.title("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
+
from PIL import Image
|
| 4 |
+
|
| 5 |
# Set page title and layout
|
| 6 |
+
st.set_page_config(page_title="Navigator", layout="wide")
|
| 7 |
|
| 8 |
# Display the page title
|
| 9 |
+
st.title("The 50-Million-Dollar Business in 5 Minutes")
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
# Load the image from the data folder
|
| 13 |
+
image_path = 'data/title.png'
|
| 14 |
+
image = Image.open(image_path)
|
| 15 |
+
|
| 16 |
+
# Display the image in the Streamlit app
|
| 17 |
+
st.image(image, caption='Image from title.png')
|
| 18 |
|