diff --git a/src-1/components/Navigation.js b/src-1/components/Navigation.js
deleted file mode 100644
index ea4de6cd18b54c86a1acfa7256a56b6675bd14b9..0000000000000000000000000000000000000000
--- a/src-1/components/Navigation.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-
-import { NavLink } from 'react-router-dom';
-
-const Navigation = () => {
-    return (
-        // This is a functional React component that returns a div element with three NavLink components inside. 
-        //Each NavLink component represents a link to a different route.
-        <div>
-            <NavLink to="/">Home</NavLink>
-            <NavLink to="/about">About</NavLink>
-            <NavLink to="/themes">Themes</NavLink>
-        </div>
-    );
-}
-
-export default Navigation;
\ No newline at end of file