import "../globals.css";

/** Must not wrap in `<html>` / `<body>` — root `app/layout.tsx` already provides them. */
export default function AuthSegmentLayout({ children }: { children: React.ReactNode }) {
  return <>{children}</>;
}
