{t('title')}
This is a dummy landing page to demonstrate the localization setup using next-intl.
TR
EN
import { getTranslations, setRequestLocale } from 'next-intl/server' import Link from 'next/link' export default async function HomePage({ params }: { params: Promise<{ locale: string }> }) { const { locale } = await params setRequestLocale(locale) const t = await getTranslations('hero') const nav = await getTranslations('nav') const footer = await getTranslations('footer') return (
This is a dummy landing page to demonstrate the localization setup using next-intl.