GuidesSSO Authentication

At this current stage, the only way to create user authentication is throughSSO

Once you finished with the tutorials above, you will be able to authenticate users in the following way:

"use client"
import { signIn } from "next-auth/react";
const SigninButton = () => {
return (
<button
className="btn btn-primary"
onClick={() => signIn('google')}
>
Login
</button>
);
};
export default SigninButton;