ℹ️
With Next Start You get two inbuilt ways to authenticate your users: Magic Links & Google Oauth (select from the below links)
you can send users to the signin/signup page like this:
ButtonSignin.tsx
"use client";
import Link from "next/link";
const SigninButton = () => {
return (
<Link className="btn btn-primary" href="/signin">
Login
</Link>
);
};
export default SigninButton;