This commit is contained in:
2025-07-30 20:10:27 +02:00
parent 6720375fa1
commit 3e82b19480
13 changed files with 304 additions and 60 deletions
@@ -0,0 +1,14 @@
import { useEffect } from "react";
import { useLocation } from "react-router-dom";
const ScrollToTop = () => {
const { pathname } = useLocation();
useEffect(() => {
window.scrollTo({ top: 0, behavior: "smooth" });
}, [pathname]);
return null;
};
export default ScrollToTop;