This commit is contained in:
louiscklaw
2025-06-18 13:42:35 +08:00
parent 80a2636f90
commit 13c3399a6e
46 changed files with 1188 additions and 16 deletions

View File

@@ -0,0 +1,16 @@
import { Auth0SignInView } from 'src/auth/view/auth0';
import { CONFIG } from 'src/global-config';
// ----------------------------------------------------------------------
const metadata = { title: `Sign in | Auth0 - ${CONFIG.appName}` };
export default function Page() {
return (
<>
<title>{metadata.title}</title>
<Auth0SignInView />
</>
);
}