mirror of
https://github.com/linsa-io/linsa.git
synced 2026-07-20 18:01:10 +02:00
20 lines
429 B
TypeScript
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>
|
|
)
|
|
}
|