import streamlit as st
import streamlit.components.v1 as components
st.title("Mobile-Friendly Shader Demo")
# HTML + JS shader component
html_code = """
"""
components.html(html_code, height=400)
st.markdown("**Instructions:** Move your mouse (desktop) or touch (mobile) the canvas to change colors in real time.")