Go to the Bottom/Top of the page

Hi,
Can someone share a snippet of code, where I can go/scroll to the Bottom of my streamlit page.
I want to click a st.button and it will go to the bottom of page, and similarly Back to Top.
I tried some JS components suggested by gpt, none worked.
I found a hack where you can use the below and then direct yourself there using a link, but I didnt find it very neat.

st.markdown("<div id='page_top'></div>", unsafe_allow_html=True)    

Thanks!