Spaces:
Building
Building
File size: 334 Bytes
5dd0050 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import streamlit as st
st.set_page_config(page_title="Smart TV Interface", layout="wide")
st.title("Smart TV Browser")
# Visualizzazione del sito tramite iframe
st.markdown(
"""
<iframe src="https://streamingcommunity.paris/" width="100%" height="700px" style="border:none;"></iframe>
""",
unsafe_allow_html=True,
)
|