Py.Cafe

mesaquehenrique47/

echoenglish-ai

⚡ EchoEnglish AI

DocsPricing
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# ─────────────────────────────────────────
# ECHOENGLISH INTERFACE
# ─────────────────────────────────────────

st.markdown("""
<style>

/* Background */
.stApp {
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color: white;
}

/* Title */
.echo-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    color: #38bdf8;
}

/* Subtitle */
.echo-sub {
    text-align:center;
    font-size:18px;
    color:#cbd5f5;
}

/* Chat box */
.stChatMessage {
    border-radius:15px;
    padding:10px;
}

/* Sidebar */
section[data-testid="stSidebar"] {
    background:#020617;
}

</style>
""", unsafe_allow_html=True)

st.markdown(
"""
<div class="echo-title">⚡ EchoEnglish AI</div>
<div class="echo-sub">Practice English with Smart Feedback</div>
""",
unsafe_allow_html=True
)