Anonym26 commited on
Commit
9b23bee
·
verified ·
1 Parent(s): 9abae96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -12
app.py CHANGED
@@ -82,20 +82,15 @@ with gr.Blocks() as demo:
82
  outputs=list(outputs.values()),
83
  )
84
 
85
- # Ссылки на соцсети
86
  with gr.Row():
87
  with gr.Column(scale=1):
88
  gr.Image(value='icon.jpg')
89
  with gr.Column(scale=4):
90
- gradio.HTML("""<div style="text-align: center; font-family: 'Helvetica Neue', sans-serif; padding: 10px; color: #333333;">
91
- <p style="font-size: 18px; font-weight: 600; margin-bottom: 8px;">
92
- Эта демка была создана телеграм каналом <strong style="color: #007ACC;"><a href='https://t.me/mlphys'> mlphys</a></strong>. Другие мои социальные сети:
93
- </p>
94
- <p style="font-size: 16px;">
95
- <a href="https://t.me/mlphys" target="_blank" style="color: #0088cc; text-decoration: none; font-weight: 500;">Telegram</a> |
96
- <a href="https://x.com/quensy23" target="_blank" style="color: #1DA1F2; text-decoration: none; font-weight: 500;">Twitter</a> |
97
- <a href="https://github.com/freQuensy23-coder" target="_blank" style="color: #0088cc; text-decoration: none; font-weight: 500;">GitHub</a>
98
- </p>
99
- </div>""")
100
 
101
- demo.launch()
 
82
  outputs=list(outputs.values()),
83
  )
84
 
85
+ # Ссылки на соцсети
86
  with gr.Row():
87
  with gr.Column(scale=1):
88
  gr.Image(value='icon.jpg')
89
  with gr.Column(scale=4):
90
+ gr.Markdown("""
91
+ ### Поддержка проекта
92
+ - [Telegram](https://t.me/mlphys)
93
+ - [GitHub](https://github.com/freQuensy23-coder)
94
+ """)
 
 
 
 
 
95
 
96
+ demo.launch()