prithivMLmods commited on
Commit
61817f9
·
verified ·
1 Parent(s): 92c7d91

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
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("## Webpage to ZIP Downloader 🔗")
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)")