import streamlit as st def main(): st.set_page_config(page_title="Congratulations!", page_icon=":confetti_ball:", layout="wide") st.title("Congratulations!") st.write("You have successfully completed the terms of service agreement!") st.write("You may now access the rest of the platform.") if __name__ == "__main__": main()