Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -87,8 +87,13 @@ examples = [
|
|
87 |
"https://streamlit.io/"
|
88 |
]
|
89 |
|
|
|
|
|
|
|
|
|
|
|
90 |
with gr.Blocks(theme="bethecloud/storj_theme") as demo:
|
91 |
-
gr.Markdown(
|
92 |
gr.Markdown("Enter a URL to download the webpage and its assets as a ZIP file.")
|
93 |
|
94 |
url_input = gr.Textbox(label="Website URL", placeholder="Enter a URL (e.g., https://www.example.com)")
|
|
|
87 |
"https://streamlit.io/"
|
88 |
]
|
89 |
|
90 |
+
DESCRIPTION = """
|
91 |
+
|
92 |
+
## Webpage to ZIP Downloader 🔗
|
93 |
+
"""
|
94 |
+
|
95 |
with gr.Blocks(theme="bethecloud/storj_theme") as demo:
|
96 |
+
gr.Markdown(DESCRIPTION)
|
97 |
gr.Markdown("Enter a URL to download the webpage and its assets as a ZIP file.")
|
98 |
|
99 |
url_input = gr.Textbox(label="Website URL", placeholder="Enter a URL (e.g., https://www.example.com)")
|