diff --git a/src/pages/Home.jsx b/src/pages/Home.jsx
index a858087..c9c987c 100644
--- a/src/pages/Home.jsx
+++ b/src/pages/Home.jsx
@@ -1,9 +1,9 @@
// Modules
+import { useEffect } from 'react';
import { Link } from 'react-router-dom';
// Components
import Hero from '../components/Hero';
import SectionTitle from '../components/SectionTitle';
-import Ticker from '../components/Ticker';
import NewsPost from '../components/NewsPost';
import DocumentLink from '../components/DocumentLink';
import VideoPlayer from '../components/VideoPlayer';
@@ -12,6 +12,10 @@ import DataChart from '../components/DataChart';
import arrow from '../assets/icons/arrow.svg';
const Home = () => {
+ useEffect(() => {
+ window.scrollTo(0, 0);
+ }, []);
+
return (
{/* Hero section */}
diff --git a/src/pages/Normative.jsx b/src/pages/Normative.jsx
index d887215..4f70535 100644
--- a/src/pages/Normative.jsx
+++ b/src/pages/Normative.jsx
@@ -1,6 +1,13 @@
+// Modules
+import { useEffect } from 'react';
+// Components
import SectionTitle from '../components/SectionTitle';
export const Normative = () => {
+ useEffect(() => {
+ window.scrollTo(0, 0);
+ }, []);
+
return (