import { redirect } from 'next/navigation';

/**
 * This page handles the root /admin route.
 * It simply redirects the user to the admin dashboard.
 * The middleware will intercept this request and ensure the user is authenticated.
 */
export default function AdminRootPage() {
  redirect('/admin/dashboard');
}
