"use client"; import Link from "next/link"; import { useState } from "react"; import ThemedLayout from "@/components/layouts/ThemedLayout"; export default function EasterEggsPage() { const [clicked, setClicked] = useState(false); return (

404: Easter Egg Not Found

Just kidding. But you really thought we would just hand it to you? Click the invisible button below.

{clicked && (

You found it!

Your prize is exactly one (1) sense of pride and accomplishment.

Now proceed to the secret layer.
)}
); }