Spaces:
Running
Running
feat: add expander
Browse files
app.py
CHANGED
|
@@ -86,6 +86,20 @@ with st.sidebar:
|
|
| 86 |
|
| 87 |
st.markdown("""""")
|
| 88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
col1, col2, col3 = st.columns([0.01, 0.98, 0.01])
|
| 90 |
|
| 91 |
col2.video("intro.mp4")
|
|
|
|
| 86 |
|
| 87 |
st.markdown("""""")
|
| 88 |
|
| 89 |
+
with st.expander("About the Sales Pilot"):
|
| 90 |
+
st.markdown("""
|
| 91 |
+
The Sales Pilot is a sales assistant that can analyze and forecast sales using your historical excel or csv data.
|
| 92 |
+
It can help you understand your sales data and make predictions about future sales.
|
| 93 |
+
|
| 94 |
+
### 🤝 Join our Community
|
| 95 |
+
- Discord: [Join our Discord server](https://discord.com/invite/7wmy5H2dwh)
|
| 96 |
+
- YouTube: [Subscribe to our channel](https://www.youtube.com/channel/UCltuweJjWc3A25ub8X6q5oA)
|
| 97 |
+
|
| 98 |
+
### 🏢 Company
|
| 99 |
+
Sales Pilot is developed by [Miragic AI](https://miragic.ai), a company focused on bringing Generative AI Solutions.
|
| 100 |
+
""")
|
| 101 |
+
|
| 102 |
+
|
| 103 |
col1, col2, col3 = st.columns([0.01, 0.98, 0.01])
|
| 104 |
|
| 105 |
col2.video("intro.mp4")
|