import { redirect } from 'next/navigation'; import { createSupabaseServerClient } from '@/lib/supabase/server'; import { EnrollClient } from './enroll-client'; export const dynamic = 'force-dynamic'; /** * Mandatory MFA enrollment gate. Reachable only by authenticated users (the * middleware sends users here when they have zero verified factors). If the * user already has a verified factor, there is nothing to enroll, so we send * them on to the dashboard. */ export default async function EnrollPage() { const supabase = createSupabaseServerClient(); const { data: { user }, } = await supabase.auth.getUser(); if (!user) redirect('/login'); const { data: factors } = await supabase.auth.mfa.listFactors(); const verified = factors?.all.filter((f) => f.status === 'verified') ?? []; if (verified.length > 0) redirect('/dashboard'); return (

Secure your account

Two-factor authentication is required. Add at least one method below to continue.

); }