Update app.py
Browse files
app.py
CHANGED
@@ -85,21 +85,22 @@ description = """
|
|
85 |
<style>
|
86 |
.notification {
|
87 |
text-align: center; /* Center the text */
|
88 |
-
background-color: #
|
89 |
-
color: #
|
90 |
padding: 20px; /* Padding */
|
91 |
margin: 20px; /* Margin */
|
92 |
-
border: 2px solid #
|
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.
|
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 |
|
|
|
85 |
<style>
|
86 |
.notification {
|
87 |
text-align: center; /* Center the text */
|
88 |
+
background-color: #ffffff; /* White Background */
|
89 |
+
color: #000; /* Black text */
|
90 |
padding: 20px; /* Padding */
|
91 |
margin: 20px; /* Margin */
|
92 |
+
border: 2px solid #000000; /* Black 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.1); /* Subtle 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 |
|
106 |
|