Update app.py
Browse files
app.py
CHANGED
@@ -182,10 +182,18 @@ def translate_text(text: str, target_language: str):
|
|
182 |
|
183 |
# Создание интерфейса
|
184 |
with gr.Blocks() as demo:
|
185 |
-
# Заголовок с изображением
|
186 |
gr.HTML("""
|
187 |
<div style="text-align: center;">
|
188 |
<img src="https://huggingface.co/spaces/Felguk/Felguk-v0/resolve/main/hd_crop_4c480c6a2c7e176289b0dfcb64a30603_67753ddec8355.png" alt="Felguk Logo" style="width: 300px;">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
</div>
|
190 |
""")
|
191 |
|
|
|
182 |
|
183 |
# Создание интерфейса
|
184 |
with gr.Blocks() as demo:
|
185 |
+
# Заголовок с изображением и значками
|
186 |
gr.HTML("""
|
187 |
<div style="text-align: center;">
|
188 |
<img src="https://huggingface.co/spaces/Felguk/Felguk-v0/resolve/main/hd_crop_4c480c6a2c7e176289b0dfcb64a30603_67753ddec8355.png" alt="Felguk Logo" style="width: 300px;">
|
189 |
+
<div style="margin-top: 10px;">
|
190 |
+
<a href="https://github.com/Redcorehash">
|
191 |
+
<img src="https://img.shields.io/badge/GitHub-Repo-blue?style=for-the-badge&logo=github" alt="GitHub">
|
192 |
+
</a>
|
193 |
+
<a href="https://huggingface.co/felguk">
|
194 |
+
<img src="https://img.shields.io/badge/Hugging%20Face-Profile-yellow?style=for-the-badge&logo=huggingface" alt="Hugging Face">
|
195 |
+
</a>
|
196 |
+
</div>
|
197 |
</div>
|
198 |
""")
|
199 |
|