"use client"; import Link from "next/link"; import { useEffect, useState } from "react"; import ThemedLayout from "@/components/layouts/ThemedLayout"; export default function SecretLayerPage() { const [binary, setBinary] = useState(""); useEffect(() => { const interval = setInterval(() => { let str = ""; for(let i=0; i<800; i++) { str += Math.random() > 0.5 ? "1" : "0"; } setBinary(str); }, 100); return () => clearInterval(interval); }, []); return (
{binary}

LEVEL 2 CLEARANCE REQUIRED

You are not supposed to be here. The cyber-cops have been dispatched. They are bringing donuts.

FLEE TO MAIN SITE
); }