import { redirect } from 'next/navigation' // Immediate redirect to the first settings sub-page // This avoids loading the heavy settings/page.tsx client component on first visit export default function SettingsIndexPage() { redirect('/settings/general') }