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