Publish ITWorx Pulse source
Public source validation / validate (push) Failing after 3m8s

This commit is contained in:
ITWorx Pulse release export
2026-09-03 02:09:19 +02:00
commit bd774932d5
614 changed files with 77116 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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>;
}