| 1 | import { permanentRedirect } from "next/navigation"; |
| 2 | |
| 3 | export default async function PrivacyAliasPage({ params }: { params: Promise<{ locale: string }> }) { |
| 4 | const { locale } = await params; |
| 5 | permanentRedirect(`/${locale}/legal/privacy`); |
| 6 | } |
| 7 |