clerk auth dark mode

This commit is contained in:
marshennikovaolga
2024-09-08 18:55:46 +03:00
parent 53fae2d73a
commit c87ae5c329
5 changed files with 53 additions and 9 deletions

View File

@@ -1,9 +1,19 @@
import { SignInClient } from "@/components/custom/clerk/sign-in-client"
// import { SignInClient } from "@/components/custom/clerk/sign-in-client"
// export default async function Page() {
// return (
// <div className="flex justify-center py-24">
// <SignInClient />
// </div>
// )
// }
import { SignUpClient } from "@/components/custom/clerk/sign-up-client"
export default async function Page() {
return (
<div className="flex justify-center py-24">
<SignInClient />
<SignUpClient />
</div>
)
}