import streamlit as st
import streamlit.components.v1 as components
# 1. Page Config
st.set_page_config(page_title="TeraBites Org Card", layout="centered")
# 2. Branding Header
st.markdown("""
Welcome to TeraBites
by onyxneo
""", unsafe_allow_html=True)
# 3. AI Team Mission
st.info("**The AI Team** The TeraBites AI Team is a special Team focused to provide users the best AI possible and best experience in HF by creating spaces like this!")
# 4. The TeraBites Oval (Visual Engine)
# I have set this to be ALWAYS active since we want it ON when the user comes.
oval_html = """
"""
components.html(oval_html, height=160)
# 5. Auto-Start Logic
# We force the video to autoplay by adding '&autoplay=1&mute=0' to the URL
# Note: Most browsers require the user to interact before sound plays,
# but the video/visuals will start immediately.
st.video("https://www.youtube.com/watch?v=KK3KXAECte4&autoplay=1")
# 6. The "Kill Switch"
# If they want to stop the madness, they still have the button.
if st.button("■ EMERGENCY STOP"):
st.warning("TeraBites Core Offline.")
st.stop()