// File: app/(auth)/layout.tsx export default function AuthLayout({ children, }: { children: React.ReactNode; }) { return (
{/* Container หลักจัดกึ่งกลาง */} {children}
); }