import Link from 'next/link'; import { BadgeCheck } from 'lucide-react'; import { fetchSuggestedFollows } from '@/lib/api/feed/post'; import FollowButton from '@/app/component/FollowButton'; import { Avatar, AvatarImage, AvatarFallback } from '@/components/ui/avatar'; export default async function FeedSuggestedFollows() { const res = await fetchSuggestedFollows(5); const list = res.data?.list ?? []; if (list.length === 0) { return null; } return (

추천 회원

); }