"use client"; import Link from "next/link"; import { BeadsLogo } from "@/components/BeadsLogo"; /** * Custom 404 page for Heartbeads. * Minimal, elegant — matches the clean graph-visualization design language. * The flatline ECG + heartbeat logo gives it character without being noisy. */ export default function NotFound() { return (
{/* Flatline ECG trace — the bead has no pulse here */}
{/* The heartbeat logo pulses in the center — life in the void */}
{/* 404 number */}

404

{/* Tagline */}

This bead has no pulse.

{/* Subtext */}

We searched the entire dependency graph, but this node doesn't exist. Maybe it was closed, maybe it never was.

{/* Back to graph button */} Back to the heartbeat {/* Tiny footer quip */}

error code: BEAD_NOT_FOUND · flatline detected

); }