Update landing.py
Browse files- landing.py +22 -11
landing.py
CHANGED
@@ -1,16 +1,27 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
def
|
4 |
st.markdown(
|
5 |
"""
|
6 |
-
# π AutoExec AI
|
7 |
-
**Your Autonomous AI Business Builder**
|
8 |
-
|
9 |
-
|
10 |
-
- π **Automated LoopAgent** optimizations
|
11 |
-
- π **Multi-Agent** orchestration
|
12 |
-
- πΌ **SaaS-ready** with billing & user login (coming soon)
|
13 |
-
|
14 |
-
[π Try Live Demo](https://huggingface.co/spaces/mgbam/AICEO)
|
15 |
"""
|
16 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
def show_landing():
|
4 |
st.markdown(
|
5 |
"""
|
6 |
+
# π AutoExec AI
|
7 |
+
**Your Autonomous AI Business Builder**
|
8 |
+
Launch, manage, and optimize digital businesses at the click of a button.
|
9 |
+
---
|
|
|
|
|
|
|
|
|
|
|
10 |
"""
|
11 |
+
)
|
12 |
+
col1, col2, col3 = st.columns(3)
|
13 |
+
features = [
|
14 |
+
("π€ LLM-Powered", "Gemini Pro + GPT-4 fallback"),
|
15 |
+
("π LoopAgent", "Daily automatic optimizations"),
|
16 |
+
("π Dashboard", "Real-time logs & analytics"),
|
17 |
+
]
|
18 |
+
for col, (title, desc) in zip([col1, col2, col3], features):
|
19 |
+
col.subheader(title)
|
20 |
+
col.write(desc)
|
21 |
+
|
22 |
+
if st.button("π Try the Demo"):
|
23 |
+
st.experimental_set_query_params(mode="app")
|
24 |
+
st.experimental_rerun()
|
25 |
+
|
26 |
+
st.markdown("---")
|
27 |
+
st.write("**Pricing**: Free tier available. Pro tier unlocks unlimited businesses and analytics.")
|