File size: 794 Bytes
eec5f94
 
9f693f3
eec5f94
 
9f693f3
 
 
eec5f94
9f693f3
 
 
 
 
 
 
 
 
 
 
ab11f85
9f693f3
7265f3d
ab11f85
9f693f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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"):
        # Switch to the 'Launch' page and rerun
        st.session_state.page = "Launch"
        st.experimental_rerun()