import { redirect } from 'next/navigation'; // Legacy /reminders route - merged into /inbox in 2026-05-11. The hash // scrolls + expands the Reminders section on the merged page. export default async function RemindersRedirect({ params, }: { params: Promise<{ portSlug: string }>; }) { const { portSlug } = await params; redirect(`/${portSlug}/inbox#reminders`); }