diff --git a/src/components/Nav/index.jsx b/src/components/Nav/index.jsx index 95acfda..b5ff68c 100644 --- a/src/components/Nav/index.jsx +++ b/src/components/Nav/index.jsx @@ -12,7 +12,7 @@ import ScrollDirection from "../../helpers/ScrollDirection"; function Nav() { const scrollDirection = ScrollDirection(); const links = [ - { link: "/me", label: "About" }, + { link: "/", label: "About" }, { link: "/skills", label: "Skill" }, { link: "/projects", label: "Projects" }, { link: "/certification", label: "Certification" }, diff --git a/src/pages/Service/index.jsx b/src/pages/Service/index.jsx deleted file mode 100644 index 8905a79..0000000 --- a/src/pages/Service/index.jsx +++ /dev/null @@ -1,18 +0,0 @@ -const Service = () => { - return ( -
-
-

- Page Under Construction .. -

- -
-
- ); -}; - -export default Service; diff --git a/src/routes/index.jsx b/src/routes/index.jsx index e995378..1a5f2d0 100644 --- a/src/routes/index.jsx +++ b/src/routes/index.jsx @@ -7,15 +7,13 @@ import Contact from "../pages/Contact"; import NotFound from "../pages/NotFound"; import Certification from "../pages/Certification"; import ScrollToTop from "../helpers/ScrollToTop"; -import Service from "../pages/Service"; const Router = () => { return ( - } /> - } /> + } /> } /> } /> } />