speech_recognition_tutorial / pages /6_Congratulations.py
chandralegend's picture
added tutorial content
516de6c
raw
history blame
283 Bytes
import streamlit as st
from utils.levels import complete_level, render_page, initialize_level
initialize_level()
LEVEL = 6
def step1_page():
st.header("Congratulations!")
st.subheader("You have completed the tutorial!")
st.balloons()
render_page(step1_page, LEVEL)