import { HTMLAttributes } from "react";

export default function Container({ className = "", children, ...rest }: HTMLAttributes<HTMLDivElement>) {
  return (
    <div className={`mx-auto w-full max-w-content px-6 lg:px-10 ${className}`} {...rest}>
      {children}
    </div>
  );
}
