import { SignInButton, SignInFallback } from "@/components/sign-in-btn"; import { headers } from "next/headers"; import { Suspense } from "react"; export default async function Home() { const features = [ "Email & Password", "Organization | Teams", "Passkeys", "TwoFactor", "Multi Factor", "Password Reset", "Session Management" ] return (

Better Auth.

Official demo to showcase better-auth. features and capabilities.

* All features on this demo are Implemented with better auth without any custom backend code
{features.map(feature => ( {feature}. ))}
}>
); }