Add this to your app.tsx and it will load the new page then scroll to the top.
useEffect(() => { window.scrollTo(0, 0); }, [location.pathname]); // Trigger the effect when the pathname changes