initial commit
Some checks failed
CodeQL / Analyze (push) Failing after 1m32s

This commit is contained in:
Ludwig Lehnert
2026-01-11 11:08:48 +01:00
commit 0efd3d954b
58 changed files with 19390 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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;