import { SignInButton, SignInFallback } from "@/components/sign-in-btn"; import { Suspense } from "react"; export default async function Home() { const features = [ "Email & Password", "Organization | Teams", "Passkeys", "Multi Factor", "Password Reset", "Email Verification", "Roles & Permissions", "Rate Limiting", "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}. ))}
{/* @ts-ignore */} }> {/* @ts-ignore */}
); }