oracle: v4

This commit is contained in:
nym21
2026-06-04 15:38:01 +02:00
parent f41874f438
commit a3f3c54675
313 changed files with 1980 additions and 996 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;
}
+5
View File
@@ -0,0 +1,5 @@
main.explore {
display: grid;
place-items: center;
font-size: 4rem;
}