diff --git a/src/components/Home.tsx b/src/components/Home.tsx
index 33e9c05..5523302 100644
--- a/src/components/Home.tsx
+++ b/src/components/Home.tsx
@@ -1,3 +1,4 @@
+import { useEffect } from 'react';
import Hero from './Hero';
import About from './About';
import Skills from './Skills';
@@ -6,6 +7,10 @@ import Education from './Education';
import Contact from './Contact';
const Home = () => {
+ useEffect(() => {
+ document.title = "Portfolio - Dayron Van Leemput";
+ }, []);
+
return (
<>