import { getTranslations } from 'next-intl/server'; import type { Metadata } from 'next'; export async function generateMetadata(): Promise { const t = await getTranslations('layout.header.logo'); return { title: t('platform'), }; } const Home = () => (
home
); export default Home;