page.tsx
login-form.tsx
import { LoginForm } from "@/components/login-form";
export default function Page() {
return (
<div className="flex w-full items-center justify-center p-6 md:p-10">
<div className="w-full max-w-sm">
<LoginForm />
</div>
</div>
);
}
page.tsx
login-form-two.tsx
google-logo.tsx
import { LoginFormTwo } from "@/components/login-form-two";
export default function Page() {
return (
<div className="flex w-full items-center justify-center p-3">
<div className="w-full max-w-md">
<LoginFormTwo />
</div>
</div>
);
}