HaoAws/app/news/page.tsx

8 lines
209 B
TypeScript
Raw Permalink Normal View History

2025-09-16 16:37:48 +08:00
import { redirect } from 'next/navigation';
import { defaultLocale } from '@/lib/i18n';
export default function NewsPage() {
// Redirect to the localized version
redirect(`/${defaultLocale}/news`);
}