Keiraj commited on
Commit
a64eff4
·
verified ·
1 Parent(s): 5a63b7b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -17
app.py CHANGED
@@ -1,19 +1,4 @@
1
  import streamlit as st
2
 
3
- # Load CSS
4
- def load_css(file_name):
5
- with open(file_name, "r") as f:
6
- st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
7
-
8
- # Apply CSS
9
- load_css("style.css")
10
-
11
- # Streamlit UI
12
- st.title("🌸 Cute Greeting App 🌸")
13
- st.write("Enter your name below for a special greeting!")
14
-
15
- # Input field for name
16
- name = st.text_input("Your Name:")
17
-
18
- if name:
19
- st.subheader(f"✨ Hi, {name}! You're amazing! ✨")
 
1
  import streamlit as st
2
 
3
+ with st.chat_message("user"):
4
+ st.write("hello 👋")