Files
sortsys-ui/dev/routes/(shell)/_404.tsx
Ludwig Lehnert 0efd3d954b
Some checks failed
CodeQL / Analyze (push) Failing after 1m32s
initial commit
2026-01-11 11:08:48 +01:00

18 lines
665 B
TypeScript

import type { Component } from 'solid-js';
import { SSButton, SSCallout, SSHeader, SSSurface } from 'src';
import { IconShield } from '../../demo/content';
const NotFoundPage: Component = () => (
<div class="demo_page">
<SSHeader title="Not found" subtitle="This route is not available in the demo." />
<SSSurface class="demo_surface">
<SSCallout color="amber" icon={<IconShield />}>
The page you requested does not exist. Head back to the overview to continue exploring.
</SSCallout>
<SSButton onclick={() => (window.location.href = '#/')}>Back to overview</SSButton>
</SSSurface>
</div>
);
export default NotFoundPage;