diff --git a/src/app/profile/[id]/page.tsx b/src/app/profile/[id]/page.tsx index 939135f1..689d0ee7 100644 --- a/src/app/profile/[id]/page.tsx +++ b/src/app/profile/[id]/page.tsx @@ -19,6 +19,7 @@ import { useUploadImageToNCloud } from '@hooks/api/useUploadImageToNCloud'; import { usePutProfileImage } from '@hooks/api/usePutProfileImage'; import { usePatchFollow } from '@hooks/api/usePatchFollow'; import ProfileFeedContent from '@components/profile/ProfileFeedContent'; +import BottomNavigation from '@components/common/BottomNavigation'; export default function Page() { const pathname = usePathname(); @@ -210,6 +211,7 @@ export default function Page() { + ); }