diff --git a/src/pages/layout/components/PathNav.tsx b/src/pages/layout/components/PathNav.tsx
index 0067e8b4..c54c4654 100644
--- a/src/pages/layout/components/PathNav.tsx
+++ b/src/pages/layout/components/PathNav.tsx
@@ -2,6 +2,7 @@ import { useNavigate } from 'react-router-dom';
import { Button } from '@components/Button';
import { Icon } from '@components/Icon';
import { Logo, PathNavContainer } from './PathNav.style';
+import { Link } from '@components/Link';
interface pathNavProps {
pathStatus: 'back' | 'home';
@@ -26,7 +27,11 @@ const PathNav = ({ pathStatus }: pathNavProps) => {
/>
) : (
-
+
+
+
)}
);