export default async function VerifyUserPage({ params, }: { params: Promise<{ userId: string; }>; }) { const userId = (await params).userId; console.log("userId", userId); // const dbUser = await prisma.user.findUnique({ // where: { // id: userId, // }, // include: { // island: { // include: { // atoll: true // } // } // } // }) // const nationalData = await getNationalPerson({ idCard: dbUser?.id_card ?? "" }) return null; // return ( //
//
//

Verify user

//
// {dbUser && !dbUser?.verified && } // {dbUser && !dbUser?.verified && } // {dbUser?.verified && ( // // Verified // // )} //
//
//
//
//

Database Information

//
// // // // // // // //
//
//
//

National Information

//
// // // // // // // //
// id photo //
//
//
//
//
// ); }