import { useTranslations } from 'next-intl' import { getTranslations } from 'next-intl/server' export default async function PostsPage() { const t = await getTranslations('posts') return (

{t('title')}

{t('comingSoon')}

) }