feat(auth): add sign-in and sign-up pages

This commit is contained in:
cfngc4594 2025-03-14 14:37:32 +08:00
parent 095af823e4
commit 2d872da445
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
import { SignInForm } from "@/components/sign-in-form";
export default function SignInPage() {
return <SignInForm />;
}

View File

@ -0,0 +1,5 @@
import { SignUpForm } from "@/components/sign-up-form";
export default function SignUpPage() {
return <SignUpForm />;
}