mairh

Authentication, Reimagined

An Auth-as-a-Service platform for developers who move fast. Inspired by the best, built for the future.

1. Create Project

Sign up and create a new project in the dashboard to get your API keys.

2. Integrate SDK

Use our lightweight SDK to add authentication to your app in minutes.

3. Go Live

Deploy with confidence, knowing your user authentication is secure and scalable.

Effortless integration

Just wrap your application with our provider. We handle the rest, from user sessions to security tokens.

import { MairhProvider } from '@mairh/react';

function App({ children }) {
  return (
    <MairhProvider apiKey="YOUR_API_KEY">
      {children}
    </MairhProvider>
  );
}