The width of the authentication page is adjusted to occupy the full width of the viewport to enhance usability. This layout update ensures consistency for different screen sizes.
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
import { AuthForms } from "@/components/auth-form";
|
|
import Image from "next/image";
|
|
|
|
export default function AuthPage() {
|
|
return (
|
|
<main className="flex flex-col items-center justify-start h-full w-full">
|
|
<AuthForms />
|
|
</main>
|
|
);
|
|
}
|