feat: add minimal about and contact pages

This commit is contained in:
2026-02-07 17:31:20 +01:00
parent eb4e0b3118
commit 7a8dc334c8
6 changed files with 286 additions and 1 deletions

View File

@@ -15,6 +15,8 @@ import './pages/page-notifications.js'
import './pages/page-not-found.js'
import './pages/page-privacy.js'
import './pages/page-terms.js'
import './pages/page-about.js'
import './pages/page-contact.js'
class AppShell extends HTMLElement {
constructor() {
@@ -59,6 +61,8 @@ class AppShell extends HTMLElement {
.register('/notifications', 'page-notifications')
.register('/privacy', 'page-privacy')
.register('/terms', 'page-terms')
.register('/about', 'page-about')
.register('/contact', 'page-contact')
router.handleRouteChange()
}