eaglelandsonce commited on
Commit
debb501
·
verified ·
1 Parent(s): bed9b8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -2
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="Concept Review", layout="wide")
5
 
6
  # Display the page title
7
- st.title("Portfolio Talent Management")
 
 
 
 
 
 
 
 
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