Files
linsa-linsa-io/web/app/(auth)/sign-in/[[...sign-in]]/page.tsx
T
marshennikovaolga c87ae5c329 clerk auth dark mode
2024-09-08 18:55:46 +03:00

20 lines
429 B
TypeScript

// 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">
<SignUpClient />
</div>
)
}