diff --git a/content/quickstart.py b/content/quickstart.py index 10fc330..f79520f 100644 --- a/content/quickstart.py +++ b/content/quickstart.py @@ -26,72 +26,70 @@ def render_windows_download_box(app_bytes: bytes) -> None: st.markdown( """ -

+

Want to run free and open DDA analysis offline?

""", unsafe_allow_html=True, ) - spacer1, center_col, spacer2 = st.columns([2, 4, 2]) - with center_col: - with st.container(key=container_key): - st.markdown( - """ -

- OpenDDA for Windows -

-

- OpenDDA is best enjoyed online but you can download an offline version for Windows systems below. -

- """, - unsafe_allow_html=True, - ) + with st.container(key=container_key): + st.markdown( + """ +

+ OpenDDA for Windows +

+

+ You can download an offline version for Windows systems below. +

+ """, + unsafe_allow_html=True, + ) - cols = st.columns([1, 2, 1]) - with cols[1]: - st.download_button( - label="📥 Download for Windows", - data=app_bytes, - file_name="OpenMS-App.zip", - mime="application/zip", - type="secondary", - use_container_width=True, - help="Download OpenDDA for Windows systems", - ) - - st.markdown( - """ -
- Extract the zip file and run the installer (.msi) to install the app. - Launch using the desktop icon after installation.
- Even offline, it's still a web app - just packaged so you can use it without an internet connection. -
- """, - unsafe_allow_html=True, + cols = st.columns([2, 3, 2]) + with cols[1]: + st.download_button( + label="📥 Download for Windows", + data=app_bytes, + file_name="OpenMS-App.zip", + mime="application/zip", + type="secondary", + use_container_width=True, + help="Download OpenDDA for Windows systems", ) st.markdown( - f""" - + """ +
+ Extract the zip file and run the installer (.msi) to install the app. + Launch using the desktop icon after installation.
+ Even offline, it's still a web app - just packaged so you can use it without an internet connection. +
""", unsafe_allow_html=True, ) + st.markdown( + f""" + + """, + unsafe_allow_html=True, + ) + page_setup(page="main")