Skip to content

Commit 82dfc72

Browse files
committed
(feat) add info about mocked landing
1 parent 195f719 commit 82dfc72

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

frontend/pages/landing.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -257,23 +257,26 @@ def generate_sample_data():
257257
# Quick Actions
258258
st.markdown("## ⚡ Quick Actions")
259259

260+
# Alert for mocked navigation
261+
st.info("ℹ️ **Note**: This is a mocked landing page. The Quick Actions buttons below are for demonstration purposes and the page navigation is not functional.")
262+
260263
col1, col2, col3, col4 = st.columns(4)
261264

262265
with col1:
263266
if st.button("🚀 Deploy Strategy", use_container_width=True, type="primary"):
264-
st.switch_page("frontend/pages/orchestration/deploy_v2_with_controllers/app.py")
267+
st.error("🚫 Navigation unavailable - This is a mocked landing page for demonstration purposes.")
265268

266269
with col2:
267270
if st.button("📊 View Performance", use_container_width=True):
268-
st.switch_page("frontend/pages/performance/app.py")
271+
st.error("🚫 Navigation unavailable - This is a mocked landing page for demonstration purposes.")
269272

270273
with col3:
271274
if st.button("🔍 Backtesting", use_container_width=True):
272-
st.switch_page("frontend/pages/backtesting/app.py")
275+
st.error("🚫 Navigation unavailable - This is a mocked landing page for demonstration purposes.")
273276

274277
with col4:
275278
if st.button("🗃️ Archived Bots", use_container_width=True):
276-
st.switch_page("frontend/pages/orchestration/archived_bots/app.py")
279+
st.error("🚫 Navigation unavailable - This is a mocked landing page for demonstration purposes.")
277280

278281
st.divider()
279282

0 commit comments

Comments
 (0)