chore: migrate sign in to domain relative path with clerk, add .env.example as well

This commit is contained in:
BennyKok
2024-01-25 10:57:13 +08:00
parent d644edd3c4
commit df4dfba31d
3 changed files with 29 additions and 0 deletions
@@ -0,0 +1,9 @@
import { SignIn } from "@clerk/nextjs";
export default function Page() {
return (
<div className="w-full h-full items-center flex justify-center">
<SignIn />
</div>
);
}
@@ -0,0 +1,9 @@
import { SignUp } from "@clerk/nextjs";
export default function Page() {
return (
<div className="w-full h-full items-center flex justify-center">
<SignUp />
</div>
);
}