import streamlit as st st.title("🚀 My First Streamlit App on Hugging Face") st.write("This is a test app running inside Docker on Spaces!") name = st.text_input("Enter your name:") if name: st.success(f"Hello, {name}! 🎉") st.bar_chart({"data": [1, 5, 2, 6, 3, 7]})