File size: 322 Bytes
5c0f016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st
from utils.levels import render_page, initialize_level

initialize_level()

LEVEL = 6


def complete_page():
    st.header("Congratulations!")
    st.subheader("You have completed the tutorial! Now You know how to build an emotion classifier!")
    st.balloons()


render_page(complete_page, LEVEL)