// Copyright © 2024 Ory Corp // SPDX-License-Identifier: Apache-2.0 "use client" import { Login } from "@ory/elements-react/theme" import "@ory/elements-react/theme/styles.css" import { useLoginFlow } from "@ory/nextjs/pages" import config from "@/ory.config" export default function LoginPage() { const flow = useLoginFlow() if (!flow) { return null } return (
) }