import gradio as gr

with gr.Blocks() as demo:
    text = """# 🕊️ The Agents course certification has moved!
    
    Please visit the quiz app which will now generate certificates:
    https://huggingface.co/spaces/agents-course/unit_1_quiz
    
    """
    gr.Markdown(text)

demo.launch()