Create landing.py
Browse files- landing.py +16 -0
landing.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
)
|