i701 406733b360
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 5m39s
feat: update authentication layout and forms for improved user experience; add new dependencies and enhance styling
2025-06-09 01:12:16 +05:00

11 lines
229 B
TypeScript

export default function AuthLayout({
children,
}: { children: React.ReactNode }) {
return (
<div className="bg-gray-100 dark:bg-black w-full h-screen flex items-center justify-center font-sans">
{children}
</div>
);
}