import streamlit as st
# Configurazione della pagina
st.set_page_config(page_title="Smart TV Browser", layout="wide")
# Stile personalizzato per Smart TV
st.markdown(
"""
""",
unsafe_allow_html=True,
)
# Titolo principale
st.title("🎬 Smart TV Browser")
# Pulsante per accedere al sito di streaming
if st.button("📺 Vai a StreamingCommunity"):
st.markdown(
"""
""",
unsafe_allow_html=True,
)
else:
st.write("Premi il pulsante sopra per accedere al sito di StreamingCommunity.")