import { getTranslations } from 'next-intl/server'; import { FollowersTable } from '@/components/features/follow/table/FollowersTable'; import { NO_INDEX_PAGE } from '@/libs/constants/seo.constants'; import type { Metadata } from 'next'; export async function generateMetadata(): Promise { const t = await getTranslations('dashboard.followers.header'); return { title: t('heading'), description: t('description'), ...NO_INDEX_PAGE, }; } const FollowersPage = () => ; export default FollowersPage;