feat: remove all easter egg hints from 404 page

Completely remove the hint text to preserve the mystery and joy of discovery.
Let users find the easter eggs on their own!

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-11-08 14:43:57 -06:00
parent c2c71531ae
commit 17561829ef
1 changed files with 0 additions and 16 deletions

View File

@ -447,22 +447,6 @@ export default function NotFound() {
</Link> </Link>
</div> </div>
{/* Easter egg hint */}
{activeEasterEgg && (
<p
className={css({
fontSize: { base: "0.75rem", sm: "0.875rem" },
color: currentTheme?.textColor || "text.secondary",
opacity: 0.8,
marginTop: { base: "1.5rem", sm: "2rem" },
fontStyle: "italic",
transition: "all 0.6s ease-in-out",
fontWeight: "medium",
})}
>
Click the beads to discover more codes...
</p>
)}
</div> </div>
</div> </div>
</PageWithNav> </PageWithNav>