Files
ITWorx-Pulse-Public/apps/web/src/NotFoundPage.tsx
T
ITWorx Pulse release export bd774932d5
Public source validation / validate (push) Failing after 3m8s
Publish ITWorx Pulse source
2026-09-03 02:09:19 +02:00

12 lines
523 B
TypeScript

import { copy } from './copy';
export function NotFoundPage() {
return <section className="state-page not-found" role="status">
<span className="state-icon" aria-hidden="true">404</span>
<p className="eyebrow">{copy.notFound.eyebrow}</p>
<h1>{copy.notFound.title}</h1>
<p>{copy.notFound.detail}</p>
<div className="state-page-actions"><a className="button" href="/">{copy.notFound.home}</a><a className="button button--secondary" href="/inventory">{copy.notFound.inventory}</a></div>
</section>;
}