Spaces:
Building
Building
File size: 1,108 Bytes
5dd0050 b2d1a54 5dd0050 b2d1a54 5dd0050 b2d1a54 5dd0050 b2d1a54 |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
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(
"""
<style>
.tv-button {
font-size: 30px;
padding: 20px;
width: 100%;
text-align: center;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 10px;
margin: 10px 0;
cursor: pointer;
}
.tv-button:hover {
background-color: #45a049;
}
iframe {
border: none;
}
</style>
""",
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(
"""
<iframe src="https://streamingcommunity.paris/" width="100%" height="800px"></iframe>
""",
unsafe_allow_html=True,
)
else:
st.write("Premi il pulsante sopra per accedere al sito di StreamingCommunity.")
|