Spaces:
Runtime error
Runtime error
File size: 771 Bytes
64bbab3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import streamlit as st
# App Title
st.title("मेरा पहला ऐप")
# Subtitle
st.subheader("हेलो वर्ल्ड!")
# Description
st.write("यह मेरा पहला Streamlit ऐप है। यह Hugging Face पर होस्ट किया गया है।")
# Input from user
name = st.text_input("Vishal:", "")
# Display user input
if name:
st.write(f"नमस्ते, {name}! यह ऐप आपके लिए है।")
# Button
if st.button("क्लिक करें"):
st.success("आपने बटन क्लिक किया!")
# Footer
st.write("यह एक डेमो ऐप है। Streamlit और Hugging Face का उपयोग करके बनाया गया।")
|