diff --git a/app/Home.py b/app/Home.py index de0d663..45cda39 100644 --- a/app/Home.py +++ b/app/Home.py @@ -520,7 +520,11 @@ if _profile and _profile.wizard_complete: for banner in _pending_banners: _bcol, _bdismiss = st.columns([10, 1]) with _bcol: - st.info(f"💡 {banner['text']} → _{banner['link_label']}_") + _ic, _lc = st.columns([3, 1]) + _ic.info(f"💡 {banner['text']}") + with _lc: + st.write("") + st.page_link("pages/2_Settings.py", label=banner['link_label'], icon="⚙️") with _bdismiss: st.write("") if st.button("✕", key=f"dismiss_banner_{banner['key']}", help="Dismiss"):