HaoAws/app/about/page.tsx

8 lines
211 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 AboutPage() {
// Redirect to the localized version
redirect(`/${defaultLocale}/about`);
}