Update app.py
Browse files
app.py
CHANGED
@@ -24,10 +24,9 @@ with gr.Blocks() as app:
|
|
24 |
gr.Markdown("## Interactive Learning Platform")
|
25 |
gr.Markdown("Choose a topic to start learning:")
|
26 |
|
27 |
-
# Progress bar at the top
|
28 |
-
gr.
|
29 |
-
|
30 |
-
unsafe_allow_html=True)
|
31 |
|
32 |
# Options for learning paths
|
33 |
selected_topic = gr.Radio(
|
|
|
24 |
gr.Markdown("## Interactive Learning Platform")
|
25 |
gr.Markdown("Choose a topic to start learning:")
|
26 |
|
27 |
+
# Progress bar at the top (HTML-based)
|
28 |
+
gr.HTML('<div style="width: 100%; background-color: lightgray; height: 5px; border-radius: 5px;">'
|
29 |
+
'<div style="width: 25%; background-color: green; height: 100%;"></div></div>')
|
|
|
30 |
|
31 |
# Options for learning paths
|
32 |
selected_topic = gr.Radio(
|