interface PageWrapperProps {
  children: React.ReactNode;
  className?: string;
}

export function PageWrapper({ children, className = "" }: PageWrapperProps) {
  return (
    <main className={`max-w-[1320px] mx-auto px-4 sm:px-6 lg:px-8 py-5 md:py-8 ${className}`}>
      {children}
    </main>
  );
}
