Spaces:
Running
Running
init
Browse files
app.py
CHANGED
|
@@ -408,6 +408,21 @@ def render_chat():
|
|
| 408 |
></iframe>
|
| 409 |
""", unsafe_allow_html=True)
|
| 410 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 411 |
def main():
|
| 412 |
st.set_page_config(
|
| 413 |
page_title="Prospira",
|
|
@@ -417,20 +432,9 @@ def main():
|
|
| 417 |
["Home", "Dashboard", "Analytics", "Brainstorm", "Chat"]
|
| 418 |
)
|
| 419 |
if page == "Home":
|
| 420 |
-
|
| 421 |
-
st.subheader("📊 Data-Driven Solutions for Businesses and Creators")
|
| 422 |
-
st.markdown("""
|
| 423 |
-
**Prospira** empowers businesses and creators to enhance their content, products, and marketing strategies using AI-driven insights.
|
| 424 |
-
|
| 425 |
-
### **✨ Key Features**
|
| 426 |
-
- **📈 Performance Analytics:** Real-time insights into business metrics.
|
| 427 |
-
- **🔎 Competitive Analysis:** Benchmark your business against competitors.
|
| 428 |
-
- **💡 Smart Product Ideas:** AI-generated recommendations for future products and content.
|
| 429 |
-
- **🧠 AI Business Mentor:** Personalized AI guidance for strategy and growth.
|
| 430 |
-
Explore how **Prospira** can help optimize your decision-making and drive success! 💡🚀
|
| 431 |
-
""")
|
| 432 |
|
| 433 |
-
|
| 434 |
render_dashboard()
|
| 435 |
elif page == "Analytics":
|
| 436 |
render_analytics()
|
|
|
|
| 408 |
></iframe>
|
| 409 |
""", unsafe_allow_html=True)
|
| 410 |
|
| 411 |
+
def render_home():
|
| 412 |
+
st.title("🚀 Welcome to Prospira")
|
| 413 |
+
st.subheader("📊 Data-Driven Solutions for Businesses and Creators")
|
| 414 |
+
st.markdown("""
|
| 415 |
+
**Prospira** empowers businesses and creators to enhance their content, products, and marketing strategies using AI-driven insights.
|
| 416 |
+
|
| 417 |
+
### **✨ Key Features**
|
| 418 |
+
- **📈 Performance Analytics:** Real-time insights into business metrics.
|
| 419 |
+
- **🔎 Competitive Analysis:** Benchmark your business against competitors.
|
| 420 |
+
- **💡 Smart Product Ideas:** AI-generated recommendations for future products and content.
|
| 421 |
+
- **🧠 AI Business Mentor:** Personalized AI guidance for strategy and growth.
|
| 422 |
+
Explore how **Prospira** can help optimize your decision-making and drive success! 💡🚀
|
| 423 |
+
""")
|
| 424 |
+
|
| 425 |
+
|
| 426 |
def main():
|
| 427 |
st.set_page_config(
|
| 428 |
page_title="Prospira",
|
|
|
|
| 432 |
["Home", "Dashboard", "Analytics", "Brainstorm", "Chat"]
|
| 433 |
)
|
| 434 |
if page == "Home":
|
| 435 |
+
render_home()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 436 |
|
| 437 |
+
elif page == "Dashboard":
|
| 438 |
render_dashboard()
|
| 439 |
elif page == "Analytics":
|
| 440 |
render_analytics()
|