vumichien commited on
Commit
160167f
β€’
1 Parent(s): c0f2663
Files changed (2) hide show
  1. app.py +1 -1
  2. args.py +1 -1
app.py CHANGED
@@ -51,7 +51,7 @@ hide_streamlit_style = """
51
  """
52
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
53
 
54
- # st.title(args.LANDINGPAGE_TITLE)
55
  st.sidebar.title(args.SIDEBAR_TITLE)
56
  method = st.sidebar.radio('Choose input source πŸ‘‡', options=['Image', 'Webcam'])
57
 
51
  """
52
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
53
 
54
+ st.write(args.LANDINGPAGE_TITLE)
55
  st.sidebar.title(args.SIDEBAR_TITLE)
56
  method = st.sidebar.radio('Choose input source πŸ‘‡', options=['Image', 'Webcam'])
57
 
args.py CHANGED
@@ -2,7 +2,7 @@ PAGE_TITLE = 'Car part Classifier'
2
  PAGE_ICON = "πŸ€–"
3
  LAYOUT = "wide"
4
 
5
- # LANDINGPAGE_TITLE = 'Car part Classification'
6
  SIDEBAR_TITLE = '✨ Navigation ✨'
7
 
8
 
2
  PAGE_ICON = "πŸ€–"
3
  LAYOUT = "wide"
4
 
5
+ LANDINGPAGE_TITLE = 'Car part Classification'
6
  SIDEBAR_TITLE = '✨ Navigation ✨'
7
 
8