feat: add Auth0 passwordless login

This commit is contained in:
Riccardo
2024-06-25 21:50:16 +02:00
parent 8f60f0b139
commit 35fa565d0a
8 changed files with 178 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
import { UserProvider } from '@auth0/nextjs-auth0/client';
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
@@ -16,7 +17,9 @@ export default function RootLayout({
}>) {
return (
<html lang='en'>
<body className={inter.className}>{children}</body>
<UserProvider>
<body className={inter.className}>{children}</body>
</UserProvider>
</html>
);
}