Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,6 @@ def generate_voice(text, voice_name):
|
|
26 |
|
27 |
|
28 |
badges = """
|
29 |
-
|
30 |
"""
|
31 |
menu = """
|
32 |
<style>
|
@@ -86,20 +85,21 @@ description = """
|
|
86 |
<style>
|
87 |
.notification {
|
88 |
text-align: center; /* Center the text */
|
89 |
-
background-color: #
|
|
|
90 |
padding: 20px; /* Padding */
|
91 |
margin: 20px; /* Margin */
|
92 |
-
border
|
|
|
93 |
font-size: 18px; /* Font size */
|
94 |
-
font-family: 'sans-serif
|
95 |
-
|
96 |
}
|
97 |
</style>
|
98 |
|
99 |
<div class="notification">
|
100 |
Welcome to AI Tutor Text to Voice, single foundational model supporting 28 languages including: English, Chinese, Spanish, Hindi, Portuguese, French, German, Japanese, Arabic, Korean, Indonesian, Italian, Dutch, Turkish, Polish, Swedish, Filipino, Malay, Romanian, Ukrainian, Greek, Czech, Danish, Finnish, Bulgarian, Croatian, Slovak, and Tamil.
|
101 |
</div>
|
102 |
-
|
103 |
"""
|
104 |
|
105 |
|
|
|
26 |
|
27 |
|
28 |
badges = """
|
|
|
29 |
"""
|
30 |
menu = """
|
31 |
<style>
|
|
|
85 |
<style>
|
86 |
.notification {
|
87 |
text-align: center; /* Center the text */
|
88 |
+
background-color: #2a2a2a; /* Dark Background */
|
89 |
+
color: #fff; /* White text */
|
90 |
padding: 20px; /* Padding */
|
91 |
margin: 20px; /* Margin */
|
92 |
+
border: 2px solid #4CAF50; /* Thin border */
|
93 |
+
border-radius: 20px; /* Rounded corners */
|
94 |
font-size: 18px; /* Font size */
|
95 |
+
font-family: 'Arial', sans-serif; /* Font family */
|
96 |
+
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); /* Box shadow for depth */
|
97 |
}
|
98 |
</style>
|
99 |
|
100 |
<div class="notification">
|
101 |
Welcome to AI Tutor Text to Voice, single foundational model supporting 28 languages including: English, Chinese, Spanish, Hindi, Portuguese, French, German, Japanese, Arabic, Korean, Indonesian, Italian, Dutch, Turkish, Polish, Swedish, Filipino, Malay, Romanian, Ukrainian, Greek, Czech, Danish, Finnish, Bulgarian, Croatian, Slovak, and Tamil.
|
102 |
</div>
|
|
|
103 |
"""
|
104 |
|
105 |
|