Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,19 +1,4 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
|
4 |
-
|
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 👋")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|