| 1 | import { redirect } from "next/navigation"; |
| 2 | |
| 3 | // Public pricing is not offered. Preserve incoming links without advertising |
| 4 | // a dormant plan; use a temporary redirect so future availability is explicit. |
| 5 | export default async function PricingPage({ params }: { params: Promise<{ locale: string }> }) { |
| 6 | const { locale } = await params; |
| 7 | redirect(`/${locale}/install`); |
| 8 | } |
| 9 |