import streamlit as st import streamlit.components.v1 as components st.set_page_config(page_title="Void Dash", page_icon="⚡", layout="wide") st.markdown(""" """, unsafe_allow_html=True) st.markdown("

⚡ VOID DASH

", unsafe_allow_html=True) st.markdown("

Tap / Space = jump  |  Hold = glide  |  Grab cyan boost  |  Dodge alien bullets!

", unsafe_allow_html=True) GAME_HTML = """

VOID DASH

Tap / Space = jump  |  Hold = glide

BOOST = speed + shield ALIENS fire bullets!

Tap to start

Score: 0  |  Best: 0 Lives:   Shield:
""" components.html(GAME_HTML, height=430, scrolling=False) st.markdown("""
Cyan triangle = BOOST (speed + shield) Red circle = +1 Life Aliens fire aimed bullets!
""", unsafe_allow_html=True)