Spaces:
Running
Running
Upload app.py
Browse files
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.
|
94 |
-
|
95 |
-
|
96 |
-
-
|
97 |
-
|
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()
|