Jack Monas
commited on
Commit
·
703b9df
1
Parent(s):
703f15e
rules
Browse files
app.py
CHANGED
@@ -123,6 +123,18 @@ def main():
|
|
123 |
|
124 |
scoring_section()
|
125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
|
127 |
|
128 |
if __name__ == '__main__':
|
|
|
123 |
|
124 |
scoring_section()
|
125 |
|
126 |
+
st.markdown("## FAQs")
|
127 |
+
st.markdown("""
|
128 |
+
<div style="background-color: #f9f9f9; padding: 20px; border-radius: 10px; margin-bottom: 20px;">
|
129 |
+
<h2 style="color: #333;">FAQs</h2>
|
130 |
+
<p><strong>Do I have to participate in all challenges?</strong><br>
|
131 |
+
No, you may choose to participate in one or more challenges. However, participating in multiple challenges may improve your overall ranking.</p>
|
132 |
+
<p><strong>Can I work in a team?</strong><br>
|
133 |
+
Yes, team submissions are welcome.</p>
|
134 |
+
<p><strong>What are the submission deadlines?</strong><br>
|
135 |
+
Deadlines for each challenge will be announced on the website.</p>
|
136 |
+
</div>
|
137 |
+
""", unsafe_allow_html=True)
|
138 |
|
139 |
|
140 |
if __name__ == '__main__':
|