yunusserhat commited on
Commit
c2f454d
·
verified ·
1 Parent(s): 71795f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -1
app.py CHANGED
@@ -175,7 +175,22 @@ def scrape_webpage(url: str) -> tuple:
175
 
176
 
177
  def main():
178
- st.title('Welcome to Geolocation Predictor Demo 👋')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
 
180
  # Define page navigation using the sidebar
181
  page = st.sidebar.selectbox(
@@ -183,6 +198,7 @@ def main():
183
  ("Home", "Upload Images", "Social Media URL", "Web Page URL"),
184
  index=0 # Default to Home
185
  )
 
186
  st.sidebar.success("Select a demo above.")
187
  if page == "Home":
188
  st.write("Welcome to the Geolocation Predictor. Please select an action from the sidebar dropdown.")
 
175
 
176
 
177
  def main():
178
+ st.sidebar.info(
179
+ """
180
+ - Web App URL: <https://yunusserhat-guesstimatelocation.hf.space/>
181
+ - HuggingFace repository: <https://huggingface.co/spaces/yunusserhat/guesstimatelocation/tree/main>
182
+ """
183
+ )
184
+
185
+ st.sidebar.title("Contact")
186
+ st.sidebar.info(
187
+ """
188
+ Yunus Serhat Bıçakçı at [yunusserhat.com](https://yunusserhat.com) | [GitHub](https://github.com/yunusserhat) | [Twitter](https://twitter.com/yunusserhat) | [LinkedIn](https://www.linkedin.com/in/yunusserhat)
189
+ """
190
+ )
191
+
192
+ st.title('Welcome to Geolocation Guesstimation Demo 👋')
193
+
194
 
195
  # Define page navigation using the sidebar
196
  page = st.sidebar.selectbox(
 
198
  ("Home", "Upload Images", "Social Media URL", "Web Page URL"),
199
  index=0 # Default to Home
200
  )
201
+
202
  st.sidebar.success("Select a demo above.")
203
  if page == "Home":
204
  st.write("Welcome to the Geolocation Predictor. Please select an action from the sidebar dropdown.")