21 lines
549 B
TypeScript
21 lines
549 B
TypeScript
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<Metadata> {
|
|
const t = await getTranslations('dashboard.followers.header');
|
|
|
|
return {
|
|
title: t('heading'),
|
|
description: t('description'),
|
|
...NO_INDEX_PAGE,
|
|
};
|
|
}
|
|
|
|
const FollowersPage = () => <FollowersTable />;
|
|
|
|
export default FollowersPage;
|