// =============================================================================
// HeadlineSift.com — Admin Root Layout
// =============================================================================
//
// Thin pass-through layout for ALL /admin routes (including /admin/login).
// The protected admin shell (sidebar, header, auth check) lives inside the
// (authenticated) route group so it doesn't wrap the login page.

import type { Metadata } from "next";

export const metadata: Metadata = {
  title: {
    default: "Admin Dashboard",
    template: "%s | Admin | HeadlineSift",
  },
  robots: {
    index: false,
    follow: false,
  },
};

export default function AdminRootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return <>{children}</>;
}
