eusholli commited on
Commit
7300eaa
·
1 Parent(s): d815415

Changed headings around

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -150,7 +150,7 @@ st.markdown(
150
  )
151
 
152
  # Streamlit page title and subtitle
153
- st.title("Computer Vision Playground")
154
 
155
  # Add a link to the README file
156
  st.markdown(
@@ -163,7 +163,7 @@ st.markdown(
163
  unsafe_allow_html=True,
164
  )
165
 
166
- st.subheader(ANALYSIS_TITLE)
167
 
168
  # Columns for input and output streams
169
  col1, col2 = st.columns(2)
@@ -190,7 +190,7 @@ with col1:
190
  st.subheader("Or Enter Image URL")
191
  image_url = st.text_input("Image URL")
192
 
193
- # Text input for video URL
194
  st.subheader("Enter a YouTube URL")
195
  youtube_url = st.text_input("YouTube URL")
196
 
 
150
  )
151
 
152
  # Streamlit page title and subtitle
153
+ st.title(ANALYSIS_TITLE)
154
 
155
  # Add a link to the README file
156
  st.markdown(
 
163
  unsafe_allow_html=True,
164
  )
165
 
166
+ st.subheader("A Computer Vision Playground")
167
 
168
  # Columns for input and output streams
169
  col1, col2 = st.columns(2)
 
190
  st.subheader("Or Enter Image URL")
191
  image_url = st.text_input("Image URL")
192
 
193
+ # Text input for YouTube URL
194
  st.subheader("Enter a YouTube URL")
195
  youtube_url = st.text_input("YouTube URL")
196