fix(explorer): unify header and dark mode theme with global standard

This commit is contained in:
oib
2026-02-27 12:09:11 +01:00
parent df726f9ccb
commit 8587a9f2b5
4 changed files with 38 additions and 1 deletions

View File

@@ -61,7 +61,6 @@ function render(): void {
const page = routes[normalizedPath] ?? null;
root.innerHTML = `
${siteHeader(page?.title ?? "Explorer")}
<main class="page">${(page ?? notFoundPageConfig).render()}</main>
${siteFooter()}
`;