|
import streamlit as st |
|
|
|
def show_landing(): |
|
st.markdown( |
|
""" |
|
# π AutoExec AI |
|
**Your Autonomous AI Business Builder** |
|
Launch, manage, and optimize digital businesses at the click of a button. |
|
""" |
|
) |
|
col1, col2, col3 = st.columns(3) |
|
features = [ |
|
("π€ LLM-Powered", "Gemini Pro + GPT-4 fallback"), |
|
("π LoopAgent", "Daily automatic optimizations"), |
|
("π Dashboard", "Real-time logs & analytics"), |
|
] |
|
for col, (title, desc) in zip([col1, col2, col3], features): |
|
col.subheader(title) |
|
col.write(desc) |
|
|
|
st.markdown("---") |
|
if st.button("π Try the Demo"): |
|
|
|
st.session_state.page = "Launch" |
|
st.experimental_rerun() |
|
|