Initial commit

This commit is contained in:
2026-03-12 12:43:56 +01:00
commit f733dee856
137 changed files with 51192 additions and 0 deletions

13
public/router.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
/**
* SPA Router - serves index.html for all admin routes
*/
http_response_code(200);
$indexPath = __DIR__ . '/index.html';
if (file_exists($indexPath)) {
readfile($indexPath);
} else {
echo '<!DOCTYPE html><html><body><h1>Application not found</h1></body></html>';
}