import { Link, useLocation } from 'react-router-dom'; import { ArrowRight } from 'lucide-react'; import { allDemos, lineup, REPO_URL, routes } from '@/content/lineup'; import * as s from '@/content/styles'; /** * A 404 with somewhere to go. * * The destinations are read from the registry and the lineup rather than * hard-coded, so this page cannot become the one place on the site that still * links to a demo we removed. */ export default function NotFound() { const { pathname } = useLocation(); const topVerticals = lineup.slice(0, 4); return (

404

That page isn’t here.

Nothing is served at{' '} {pathname}. Either the link is old or we moved something. Here is everything this site has.

Start at the beginning Every environment

Looking for the numbers?

What is measured, what is cited from elsewhere, and what we have deliberately not measured all live on one page.

Honesty The source on GitHub
); }