Skip to content

Commit cacfb4d

Browse files
committed
Refactor: 팔로우 페이지 UI 개선
1 parent fe7a3b6 commit cacfb4d

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/components/Follows/FollowsContainer.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client';
22

33
import { useRouter } from 'next/navigation';
4-
4+
import { FaPersonCircleXmark } from 'react-icons/fa6';
55
import { useGetFollowPosts } from '@/hooks/apis/Follows/useGetFollowPostsQuery';
66
import { useInfiniteScroll } from '@/hooks/useInfiniteScroll';
77
import { FollowsSkeleton } from '../Skeletons/FollowsSkeleton';
@@ -44,7 +44,10 @@ export const FollowsContainer = () => {
4444
<div ref={observerRef} style={{ height: '1px' }} />
4545
</div>
4646
) : (
47-
<div>게시글이 없습니다.</div>
47+
<div className="flex-center h-screen flex-col gap-30 overflow-hidden">
48+
<FaPersonCircleXmark className="mb-4 size-150 text-gray-400" />
49+
<div className="text-center">팔로워 게시글이 없습니다.</div>
50+
</div>
4851
)}
4952
</div>
5053
</PageContainer>

0 commit comments

Comments
 (0)