first commit

This commit is contained in:
2026-07-12 16:14:06 +05:30
commit 1dbdb4f4d5
49 changed files with 12172 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
User-agent: *
Allow: /
+9
View File
@@ -0,0 +1,9 @@
/* global window, document */
// Re-bind theme controls after WRNexusJS swaps the page during client navigation.
// bind() is idempotent, so this is safe alongside newer framework runtimes.
window.addEventListener("wrnexus:navigated", function () {
if (window.wireTheme && typeof window.wireTheme.bind === "function") {
window.wireTheme.bind(document);
}
});