risunobushi commited on
Commit
4f25d60
Β·
1 Parent(s): 5e7d2ae

Improve information section: bigger text and more spacing

Browse files
Files changed (1) hide show
  1. app.py +14 -3
app.py CHANGED
@@ -374,15 +374,26 @@ with gr.Blocks(title="YOURMIRROR.IO - SM4LL-VTON Demo") as demo:
374
  )
375
  generate_btn = gr.Button("Generate", variant="primary", size="lg")
376
 
 
 
 
377
  # Information section
378
  with gr.Row():
379
  with gr.Column():
380
  gr.Markdown("""
381
- πŸ“„ Read the Technical Report here: [sm4ll-vton.github.io/sm4llvton/](https://sm4ll-vton.github.io/sm4llvton/)
 
 
 
 
 
 
 
 
382
 
383
- πŸŽ₯ Watch the in-depth YouTube video here: [Coming Soon]
384
 
385
- πŸš€ Sign up for APIs and SDK on YourMirror: [yourmirror.io/lander](https://yourmirror.io/lander)
386
  """)
387
 
388
  # Wire up interaction
 
374
  )
375
  generate_btn = gr.Button("Generate", variant="primary", size="lg")
376
 
377
+ # Add spacing
378
+ gr.Markdown("<br><br>")
379
+
380
  # Information section
381
  with gr.Row():
382
  with gr.Column():
383
  gr.Markdown("""
384
+ <div style="font-size: 18px; line-height: 2.0;">
385
+
386
+ πŸ“„ <strong>Read the Technical Report here:</strong> <a href="https://sm4ll-vton.github.io/sm4llvton/" target="_blank">sm4ll-vton.github.io/sm4llvton/</a>
387
+
388
+ <br><br>
389
+
390
+ πŸŽ₯ <strong>Watch the in-depth YouTube video here:</strong> Coming Soon
391
+
392
+ <br><br>
393
 
394
+ πŸš€ <strong>Sign up for APIs and SDK on YourMirror:</strong> <a href="https://yourmirror.io/lander" target="_blank">yourmirror.io/lander</a>
395
 
396
+ </div>
397
  """)
398
 
399
  # Wire up interaction