import type { Metadata } from "next"; import Link from "next/link"; import { SiteFooter, SiteNav, Wordmark, kicker, h1, body } from "@/components/site"; /* The 404 anyone reaches from a stale link, a typo, or a QR code printed before a route moved. Until now this was Next's default black-on-white "404: This page could not be found." — no wordmark, no navigation, and no way back into the site. */ export const metadata: Metadata = { title: "Page not found", robots: { index: false, follow: true }, }; const LINKS: [string, string, string][] = [ ["Features", "/features", "What ThreadCount does"], ["How it works", "/how-it-works", "The shape of a working week"], ["Open the demo", "/demo", "A stocked linen room you can poke at"], ["Support", "/support", "If something here is broken"], ]; export default function NotFound() { return (
The address is wrong, or the page has moved since whatever you followed was written. Nothing has gone missing from anyone’s linen room — this is just the website.