diff --git a/src/App.js b/src/App.js
index 41b8361..558c959 100644
--- a/src/App.js
+++ b/src/App.js
@@ -4,14 +4,30 @@ import "bootstrap/dist/js/bootstrap.bundle.min";
import './App.css';
import Navigation from './UI/Navigation';
+import {BrowserRouter as Router, Routes, Route} from 'react-router-dom';
+
+import Home from './Pages/Home';
+import Linux from './Pages/Linux/Linux';
+import Radio from './Pages/Radio/Radio';
+import Software from './Pages/Software/Software';
+import DXPDevelopment from './Pages/Software/Projects/DXPDevelopment';
+import ConfigAutomation from './Pages/Software/Projects/ConfigAutomation';
function App() {
return (
-
+
-
+
+ }>
+ }>
+ }>
+ }>
+ }>
+ }>
+
+
);
}
diff --git a/src/UI/Navigation.js b/src/UI/Navigation.js
index a2ae4ad..6e7e90d 100644
--- a/src/UI/Navigation.js
+++ b/src/UI/Navigation.js
@@ -1,19 +1,11 @@
import React from 'react';
-import {BrowserRouter as Router, Routes, Route, Link} from 'react-router-dom';
-
-import Home from '../Pages/Home';
-import Linux from '../Pages/Linux/Linux';
-import Radio from '../Pages/Radio/Radio';
-import Software from '../Pages/Software/Software';
-import DXPDevelopment from '../Pages/Software/Projects/DXPDevelopment';
-import ConfigAutomation from '../Pages/Software/Projects/ConfigAutomation';
+import {Link} from 'react-router-dom';
import './Navigation.css';
const Navigation = (props) => {
return (
-
-
- }>
- }>
- }>
- }>
- }>
- }>
-
-
)
}