// 404 page export function renderNotFoundPage(): void { const app = document.getElementById('app'); if (!app) return; app.innerHTML = `

404

Page not found

Go Home
`; }