added some base code

This commit is contained in:
CodingPhoenixx
2026-02-12 14:42:45 +01:00
parent a62ce26bfa
commit 49bf7522b9
13 changed files with 236 additions and 46 deletions
+12
View File
@@ -0,0 +1,12 @@
import { LitElement, html } from 'lit';
import { customElement } from 'lit/decorators.js';
@customElement('not-found-page')
export class NotFoundPage extends LitElement {
render() {
return html`
<h1>404 Not Found</h1>
<p>How did you get here?</p>
`;
}
}