diff --git a/src/components/Nav/index.jsx b/src/components/Nav/index.jsx index b5ff68c..95acfda 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: "/", label: "About" }, + { link: "/me", 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 new file mode 100644 index 0000000..8905a79 --- /dev/null +++ b/src/pages/Service/index.jsx @@ -0,0 +1,18 @@ +const Service = () => { + return ( +
+
+

+ Page Under Construction .. +

+ +
+
+ ); +}; + +export default Service; diff --git a/src/routes/index.jsx b/src/routes/index.jsx index 1a5f2d0..e995378 100644 --- a/src/routes/index.jsx +++ b/src/routes/index.jsx @@ -7,13 +7,15 @@ 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 ( - } /> + } /> + } /> } /> } /> } />