joey1101 commited on
Commit
d49b90d
·
verified ·
1 Parent(s): 3970052

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -19
app.py CHANGED
@@ -19,25 +19,9 @@ import sentencepiece # Required by SpeechT5Processor for tokenization
19
  # Streamlit application title and input
20
  ##########################################
21
 
22
- # Display a deep blue title in a large, visually appealing font
23
- st.markdown(
24
- "<h1 style='text-align: center; color: #00008B; font-size: 50px;'>🚀 Just Comment</h1>",
25
- unsafe_allow_html=True
26
- ) # Set deep blue title
27
-
28
- # Display a gentle, warm subtitle below the title
29
- st.markdown(
30
- "<h3 style='text-align: center; color: #5D6D7E; font-style: italic;'>I'm listening to you, my friend~</h3>",
31
- unsafe_allow_html=True
32
- ) # Set a friendly subtitle
33
-
34
- # Add a text area for user input with placeholder and tooltip
35
- text = st.text_area(
36
- "Enter your comment",
37
- placeholder="Type something here...",
38
- height=100,
39
- help="Write a comment you would like us to respond to!" # Provide tooltip
40
- ) # Create text input field
41
 
42
 
43
  ##########################################
 
19
  # Streamlit application title and input
20
  ##########################################
21
 
22
+ st.title("🚀 Just Comment") # Application title displayed to users
23
+ st.write("I'm listening to you, my friend~") # Application description for users
24
+ text = st.text_area("Enter your comment", "") # Text area for user input of comments
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
 
27
  ##########################################