Skip to content

Commit

Permalink
updt: service
Browse files Browse the repository at this point in the history
  • Loading branch information
hudaputrasantosa committed Mar 16, 2024
1 parent b55f0ed commit 0d2d32a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 22 deletions.
2 changes: 1 addition & 1 deletion src/components/Nav/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
18 changes: 0 additions & 18 deletions src/pages/Service/index.jsx

This file was deleted.

4 changes: 1 addition & 3 deletions src/routes/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<BrowserRouter>
<ScrollToTop>
<Routes>
<Route path="/" element={<Service />} />
<Route path="/me" element={<About />} />
<Route path="/" element={<About />} />
<Route path="/skills" element={<Skills />} />
<Route path="/projects" element={<Projects />} />
<Route path="/certification" element={<Certification />} />
Expand Down

0 comments on commit 0d2d32a

Please sign in to comment.