diff --git a/client/src/components/Pagination/index.jsx b/client/src/components/Pagination/index.jsx
index 9302cc8..d155897 100644
--- a/client/src/components/Pagination/index.jsx
+++ b/client/src/components/Pagination/index.jsx
@@ -8,6 +8,10 @@ export default function Pagination({ currentPage, numPages, onChangePage }) {
   const search = useSearch();
 
   const changePage = (newPageNumber) => {
+    window.scrollTo({
+      top: 0,
+      behavior: "smooth",
+    });
     if (onChangePage) {
       onChangePage(newPageNumber);
       return;