Create pages/faq.py
Browse files- pages/faq.py +7 -0
pages/faq.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.title("FAQ / Help")
|
| 4 |
+
st.write("""
|
| 5 |
+
- Type your question in the main page to get AI-generated explanations.
|
| 6 |
+
- Use the buttons to track your understanding and improve your learning score.
|
| 7 |
+
""")
|