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 { SupabaseVerifyView } from 'src/auth/view/supabase';
import { CONFIG } from 'src/global-config';
// ----------------------------------------------------------------------
const metadata = { title: `Verify | Supabase - ${CONFIG.appName}` };
export default function Page() {
return (
<>
<title>{metadata.title}</title>
<SupabaseVerifyView />
</>
);
}