mgbam commited on
Commit
ab11f85
Β·
verified Β·
1 Parent(s): 26ca950

Update landing.py

Browse files
Files changed (1) hide show
  1. landing.py +3 -5
landing.py CHANGED
@@ -6,7 +6,6 @@ def show_landing():
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)
@@ -19,9 +18,8 @@ def show_landing():
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.")
 
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
  col1, col2, col3 = st.columns(3)
 
18
  col.subheader(title)
19
  col.write(desc)
20
 
21
+ st.markdown("---")
22
  if st.button("πŸ‘‰ Try the Demo"):
23
+ # Switch to Launch page
24
+ st.session_state.page = "Launch"
25
  st.experimental_rerun()