neobot commited on
Commit
6e7c49a
·
2 Parent(s): e0f5a82 5f29a12

Merge branch 'main' of https://huggingface.co/spaces/realvest/realvest-app

Browse files
Files changed (1) hide show
  1. app.py +17 -2
app.py CHANGED
@@ -129,18 +129,33 @@ def summarize_products(products: list) -> str:
129
  css='''
130
  <style>
131
  section.main > div {max-width:75rem}
 
 
 
132
  </style>
133
  '''
134
  st.markdown(css, unsafe_allow_html=True)
135
 
 
 
 
 
 
 
 
 
 
136
  # initialize state
137
  init_session_state()
138
 
139
  # Create a text input field
140
- query = st.text_input("Looking for unique investment properties? Storeage, Offices, Car Washes, Laundromat... we have it all")
 
 
 
141
 
142
  # Create a button
143
- if st.button('Submit'):
144
 
145
  # # initialize
146
  # st.session_state.clear()
 
129
  css='''
130
  <style>
131
  section.main > div {max-width:75rem}
132
+ input[type="text"] {
133
+ background-color: #F2FEEF !important;
134
+ }
135
  </style>
136
  '''
137
  st.markdown(css, unsafe_allow_html=True)
138
 
139
+ # remove the hamburger in the upper right hand corner and the Made with Streamlit footer
140
+ hide_menu_style = """
141
+ <style>
142
+ #MainMenu {visibility: hidden;}
143
+ footer {visibility: hidden;}
144
+ </style>
145
+ """
146
+ st.markdown(hide_menu_style, unsafe_allow_html=True)
147
+
148
  # initialize state
149
  init_session_state()
150
 
151
  # Create a text input field
152
+ #st.markdown('Storages, Car Washes, Laundromats... Ask us anything in your own words 🤗 ')
153
+ #query = st.text_input("")
154
+
155
+ query = st.text_input("Storages, Car Washes, Offices, Laundromats... Ask us anything in your own words 🤗 ")
156
 
157
  # Create a button
158
+ if st.button('Search'):
159
 
160
  # # initialize
161
  # st.session_state.clear()