Spaces:
Running
Running
selfitcamera
commited on
Commit
·
435c345
1
Parent(s):
e485724
init
Browse files
app.py
CHANGED
|
@@ -1164,6 +1164,9 @@ def create_app():
|
|
| 1164 |
seo_html = gr.HTML()
|
| 1165 |
|
| 1166 |
def get_seo_html(lang):
|
|
|
|
|
|
|
|
|
|
| 1167 |
return f"""
|
| 1168 |
<div style="width: 100%; margin: 50px 0; padding: 0 20px;">
|
| 1169 |
|
|
@@ -1176,7 +1179,7 @@ def create_app():
|
|
| 1176 |
</p>
|
| 1177 |
|
| 1178 |
<div style="display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; margin: 30px 0;">
|
| 1179 |
-
<a href="
|
| 1180 |
display: inline-flex;
|
| 1181 |
align-items: center;
|
| 1182 |
justify-content: center;
|
|
|
|
| 1164 |
seo_html = gr.HTML()
|
| 1165 |
|
| 1166 |
def get_seo_html(lang):
|
| 1167 |
+
# 中文、印度语、俄语使用 Google Gemini 链接
|
| 1168 |
+
unlimited_url = GOOGLE_GEMINI_URL if lang in ["zh", "hi", "ru"] else "https://omnicreator.net/#generator"
|
| 1169 |
+
|
| 1170 |
return f"""
|
| 1171 |
<div style="width: 100%; margin: 50px 0; padding: 0 20px;">
|
| 1172 |
|
|
|
|
| 1179 |
</p>
|
| 1180 |
|
| 1181 |
<div style="display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; margin: 30px 0;">
|
| 1182 |
+
<a href="{unlimited_url}" target="_blank" style="
|
| 1183 |
display: inline-flex;
|
| 1184 |
align-items: center;
|
| 1185 |
justify-content: center;
|