Low-code authentication

for your Firebase app.

Add Authentication in 7 lines of code:
page.tsx
const { signInWithPopup } = new AuthPortal({
  domain: 'auth.yourapp.com',
  client_id: 'your-client-id',
  firebase_auth: getAuth(app),
});

<button onClick={signInWithPopup}>Sign In</button>
->
https://yourapp.com/
^ Try it! :)
AuthPortal takes care of your Authentication UI so you don't have to.