add test app and requirements
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import streamlit as st
|
||||
|
||||
st.set_page_config(
|
||||
page_title="Python Web Test",
|
||||
page_icon="🚀",
|
||||
layout="centered"
|
||||
)
|
||||
|
||||
st.title("🚀 Python Web Test Sitesi")
|
||||
st.write("Bu site **Code-Server** üzerinde yazıldı, **Gitea**'ya pushlandı ve **Coolify** ile yayına alındı!")
|
||||
|
||||
st.divider()
|
||||
|
||||
# Etkileşimli Test Elemanları
|
||||
name = st.text_input("Adınızı girin:")
|
||||
if name:
|
||||
st.success(f"Harika! Hoş geldin **{name}**, sistem tıkır tıkır çalışıyor! 🎉")
|
||||
|
||||
st.metric(label="Sunucu Durumu", value="Aktif / Online", delta="100% Uptime")
|
||||
|
||||
if st.button("Bir mesaj bırak"):
|
||||
st.balloons()
|
||||
st.info("Test mesajı tetiklendi!")
|
||||
Reference in New Issue
Block a user