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