diff --git a/src/components/Header.tsx b/src/components/Header.tsx index aa5ea28..71ed053 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -6,7 +6,6 @@ import { GrClose } from 'react-icons/gr'; import { NavLink } from 'react-router'; import { Logo } from './Logo'; -const basePath = '/ji-yun'; const baseNavItemId = 'nav-menu-item'; const navLinkLabelDefaultClassName = 'block hover:text-blue-600'; @@ -20,7 +19,7 @@ export const getNavLinkCollection = ( ) => [
  • getNavLinkClassName(isActive)} id={`${id}-${baseNavItemId}-about`} aria-label="About Me" @@ -31,7 +30,7 @@ export const getNavLinkCollection = (
  • ,
  • getNavLinkClassName(isActive)} id={`${id}-${baseNavItemId}-profile`} aria-label="My Profile" @@ -44,7 +43,7 @@ export const getNavLinkCollection = (
  • ,
  • getNavLinkClassName(isActive)} @@ -57,7 +56,7 @@ export const getNavLinkCollection = (
  • ,
  • getNavLinkClassName(isActive)} diff --git a/src/components/projects/ProjectCard.tsx b/src/components/projects/ProjectCard.tsx index 265eda6..b57e9d6 100644 --- a/src/components/projects/ProjectCard.tsx +++ b/src/components/projects/ProjectCard.tsx @@ -20,7 +20,7 @@ export const ProjectCard: FC<{ return ( setProjectDetailsModalOpen(true)} > diff --git a/src/components/projects/ProjectList.tsx b/src/components/projects/ProjectList.tsx index 5f24899..70b8d0d 100644 --- a/src/components/projects/ProjectList.tsx +++ b/src/components/projects/ProjectList.tsx @@ -44,7 +44,7 @@ const ProjectList = () => { const closeProjectDetailsModal = () => { setProjectDetailsModalOpen(false); - navigate('/ji-yun/projects', { replace: true }); + navigate('/projects', { replace: true }); }; return (