Sign In & Register Pages

Now to add the AuthForm to the right pages

// signin/page.tsx
import AuthForm from "@/components/AuthForm";

export default function Register() {
  return <AuthForm mode="signin" />;
}
// register/page.tsx
import AuthForm from "@/components/AuthForm";

export default function Register() {
  return <AuthForm mode="register" />;
}

✔️ Code Checkpoint: The current code for the application can be found on the auth-pages branch.