fix: correct asset paths in layout - app.css->style.css, favicon.svg->server.svg

This commit is contained in:
2026-06-14 08:09:06 -04:00
parent 88f3c1f964
commit c9ab2ca98b

View File

@@ -16,8 +16,8 @@ $currentRoute = $_SERVER['REQUEST_URI'] ?? '/';
<title><?= htmlspecialchars($title) ?> — ServerManager</title>
<meta name="api-token" content="<?= htmlspecialchars($user['api_token'] ?? '') ?>">
<meta name="csrf-token" content="<?= $this->csrfToken() ?>">
<link rel="stylesheet" href="/assets/css/app.css">
<link rel="icon" type="image/svg+xml" href="/assets/img/favicon.svg">
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="icon" type="image/svg+xml" href="/assets/img/server.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap" rel="stylesheet">