Spaces:
Building
Building
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, | |
) | |