Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,6 @@ import re
|
|
| 4 |
st.set_page_config(
|
| 5 |
page_title="Text Case Converter",
|
| 6 |
layout="centered",
|
| 7 |
-
page_icon="🔤"
|
| 8 |
)
|
| 9 |
|
| 10 |
# ---------- Cool Tech Theme ----------
|
|
@@ -73,7 +72,7 @@ def paragraph_style(text):
|
|
| 73 |
# ---------- UI ----------
|
| 74 |
st.markdown("<div class='card'>", unsafe_allow_html=True)
|
| 75 |
|
| 76 |
-
st.markdown("<h1>
|
| 77 |
st.markdown("<p>Change your text instantly</p>", unsafe_allow_html=True)
|
| 78 |
|
| 79 |
text = st.text_area("", placeholder="Type or paste your text here...", height=180)
|
|
|
|
| 4 |
st.set_page_config(
|
| 5 |
page_title="Text Case Converter",
|
| 6 |
layout="centered",
|
|
|
|
| 7 |
)
|
| 8 |
|
| 9 |
# ---------- Cool Tech Theme ----------
|
|
|
|
| 72 |
# ---------- UI ----------
|
| 73 |
st.markdown("<div class='card'>", unsafe_allow_html=True)
|
| 74 |
|
| 75 |
+
st.markdown("<h1>Text Case Converter</h1>", unsafe_allow_html=True)
|
| 76 |
st.markdown("<p>Change your text instantly</p>", unsafe_allow_html=True)
|
| 77 |
|
| 78 |
text = st.text_area("", placeholder="Type or paste your text here...", height=180)
|