Spaces:
Runtime error
Runtime error
import streamlit as st | |
# Set page title and layout | |
st.set_page_config(page_title="Concept Review", layout="wide") | |
# Display the page title | |
st.title("Concept Review") | |
# The URL of the YouTube video you want to embed | |
video_url = "https://www.youtube.com/watch?v=c4TOr1sJiCk" # Replace with the actual URL of your video | |
# Embed the YouTube video | |
st.video(video_url) |