import { saltAndHashPassword } from "@/lib/server-helpers"; export default function DebugPage() { const password = 'admin'; const hashedPassword = saltAndHashPassword(password); return (

Debug Page

Password: {password}

Hashed Password: {hashedPassword}

); }