import { Search } from 'lucide-react'; import type { Metadata } from 'next'; import Link from 'next/link'; import { Container, Note } from '@/components/ui/section'; import { PUBLIC_API_BASE, routes } from '@/lib/site'; export const metadata: Metadata = { title: 'Not found', robots: { index: false } }; /** 404 for the whole site and for company/event/sensor pages whose id does not resolve. */ export default function NotFound() { return (

404 · Not on the map

No monitored record at this address.

The company may not be onboarded yet, the slug may have changed (ids never do), or the page never existed. Nothing is invented to fill the gap — search the atlas instead.

Home Companies Live feed Events
Canonical URLs: /company/<slug>, /industry/<slug>, /country/<code>, /events/<id>. Programmatic lookup: {PUBLIC_API_BASE.replace(/^https?:\/\/www\./, '')}/search/suggest?q=…
); }