Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -126,6 +126,8 @@ def create_interface():
|
|
| 126 |
|
| 127 |
# 인터페이스 구성
|
| 128 |
with gr.Blocks(theme=theme, title="QR Canvas") as demo:
|
|
|
|
|
|
|
| 129 |
gr.Markdown(
|
| 130 |
"""
|
| 131 |
# 🎯 Advanced QR Code Generator
|
|
@@ -133,7 +135,8 @@ def create_interface():
|
|
| 133 |
"""
|
| 134 |
)
|
| 135 |
|
| 136 |
-
|
|
|
|
| 137 |
<img src="https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2Fginipick-QR-Canvas.hf.space&countColor=%23263759" />
|
| 138 |
</a>""")
|
| 139 |
|
|
|
|
| 126 |
|
| 127 |
# 인터페이스 구성
|
| 128 |
with gr.Blocks(theme=theme, title="QR Canvas") as demo:
|
| 129 |
+
|
| 130 |
+
# Inside create_interface() function, fixing the indentation:
|
| 131 |
gr.Markdown(
|
| 132 |
"""
|
| 133 |
# 🎯 Advanced QR Code Generator
|
|
|
|
| 135 |
"""
|
| 136 |
)
|
| 137 |
|
| 138 |
+
# Fixed indentation to match the surrounding block
|
| 139 |
+
gr.HTML("""<a href="https://visitorbadge.io/status?path=https%3A%2F%2Fginipick-QR-Canvas.hf.space">
|
| 140 |
<img src="https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2Fginipick-QR-Canvas.hf.space&countColor=%23263759" />
|
| 141 |
</a>""")
|
| 142 |
|