website: redesign part 3

This commit is contained in:
nym21
2026-06-03 16:26:55 +02:00
parent a2fd1e03ad
commit 07734b8bab
17 changed files with 623 additions and 12 deletions
+8
View File
@@ -0,0 +1,8 @@
export function createExplorePage() {
const main = document.createElement("main");
main.className = "explore";
const title = document.createElement("h1");
title.append("Explore");
main.append(title);
return main;
}