Add duplicate badges
Browse files- simple_app.py +10 -0
simple_app.py
CHANGED
@@ -151,6 +151,16 @@ with gr.Blocks() as demo:
|
|
151 |
with gr.Column():
|
152 |
gr.Markdown("# Wan 2.1 1.3B")
|
153 |
gr.Markdown("Enjoy this simple working UI, duplicate the space to skip the queue :)")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
prompt = gr.Textbox(label="Prompt")
|
155 |
submit_btn = gr.Button("Submit")
|
156 |
video_res = gr.Video(label="Generated Video")
|
|
|
151 |
with gr.Column():
|
152 |
gr.Markdown("# Wan 2.1 1.3B")
|
153 |
gr.Markdown("Enjoy this simple working UI, duplicate the space to skip the queue :)")
|
154 |
+
gr.HTML("""
|
155 |
+
<div style="display:flex;column-gap:4px;">
|
156 |
+
<a href="https://huggingface.co/spaces/fffiloni/Wan2.1?duplicate=true">
|
157 |
+
<img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/duplicate-this-space-sm.svg" alt="Duplicate this Space">
|
158 |
+
</a>
|
159 |
+
<a href="https://huggingface.co/fffiloni">
|
160 |
+
<img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/follow-me-on-HF-sm-dark.svg" alt="Follow me on HF">
|
161 |
+
</a>
|
162 |
+
</div>
|
163 |
+
""")
|
164 |
prompt = gr.Textbox(label="Prompt")
|
165 |
submit_btn = gr.Button("Submit")
|
166 |
video_res = gr.Video(label="Generated Video")
|