8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
|
|
import { redirect } from 'next/navigation';
|
||
|
|
import { defaultLocale } from '@/lib/i18n';
|
||
|
|
|
||
|
|
export default function NewsPage() {
|
||
|
|
// Redirect to the localized version
|
||
|
|
redirect(`/${defaultLocale}/news`);
|
||
|
|
}
|