Anonym26 commited on
Commit
e02f42e
·
verified ·
1 Parent(s): 92d7a06

Upload app.py

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