mgbam commited on
Commit
9f693f3
Β·
verified Β·
1 Parent(s): 393bef7

Update landing.py

Browse files
Files changed (1) hide show
  1. landing.py +22 -11
landing.py CHANGED
@@ -1,16 +1,27 @@
1
  import streamlit as st
2
 
3
- def render_landing():
4
  st.markdown(
5
  """
6
- # πŸš€ AutoExec AI
7
- **Your Autonomous AI Business Builder**
8
-
9
- - πŸ€– **LLM-driven** product ideas & copy
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.")