diff --git a/src/App.js b/src/App.js
index 09b80b2..c359fed 100644
--- a/src/App.js
+++ b/src/App.js
@@ -6,6 +6,7 @@ import HeaderD from './components/HeaderD';
import HeaderM from './components/HeaderM';
import PartOne from './components/PartOne';
import PartTwo from './components/PartTwo';
+import Footer from './components/Footer';
export default function App() {
const [currentLanguage, setCurrentLanguage] = useState('en');
@@ -33,6 +34,8 @@ export default function App() {
+
+
);
}
diff --git a/src/components/Footer.js b/src/components/Footer.js
new file mode 100644
index 0000000..acfe388
--- /dev/null
+++ b/src/components/Footer.js
@@ -0,0 +1,61 @@
+import React from 'react';
+
+export default function Footer() {
+ const handleScroll = () => {
+ window.scroll({
+ top: 0,
+ left: 0,
+ behavior: 'smooth',
+ });
+ };
+
+ return (
+
+ );
+}
diff --git a/src/components/PartTwo.js b/src/components/PartTwo.js
index a969920..3dcbe91 100644
--- a/src/components/PartTwo.js
+++ b/src/components/PartTwo.js
@@ -5,7 +5,7 @@ import pencil from '../assets/images/pencil.png';
export default function PartTwo() {
return (