The SaaS Starter ($49) includes NextAuth v5 with GitHub and Google OAuth providers. The SaaS Boilerplate ($59) extends this with 5 providers: GitHub, Google, Discord, email/password, and magic link authentication, plus TOTP multi-factor authentication scaffolding.
import NextAuth from "next-auth";
import GitHub from "next-auth/providers/github";
import Google from "next-auth/providers/google";
import Discord from "next-auth/providers/discord";
import Resend from "next-auth/providers/resend";
export const { handlers, signIn, auth } = NextAuth({
providers: [GitHub, Google, Discord, Resend({ from: "noreply@site.com" })],
});