PRIVATE CONTENT
Enter passcode to continue
Unlock
Return to Projects
import { useState } from "react" import { useRouter } from "framer" // Define the correct password const CORRECT_PASSWORD = "1234" export default function LockScreen() { const [input, setInput] = useState("") const router = useRouter() const handleUnlock = () => { if (input === CORRECT_PASSWORD) { router.navigate("/main") // Redirect to the main page } else { alert("Incorrect code. Try again.") } } return (
setInput(e.target.value)} className="p-2 border rounded" />
Unlock
) }