"use client";

import type { ReactNode } from "react";

type PageContainerProps = {
  children: ReactNode;
  className?: string;
};

/** Max-width content column inside the admin shell. */
export function PageContainer({ children, className = "" }: PageContainerProps) {
  return (
    <div className={`mx-auto w-full max-w-[1200px] ${className}`.trim()}>{children}</div>
  );
}
