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