Files
warmbly/admin/index.html
T
Matthew Meszaros 13c4ebb7a6 rename web-admin -> admin
Shorter, cleaner path. The 'web-' prefix was redundant given the dir
sits at the repo root next to web/ and is unambiguously the admin web
app. Git tracked the rename so blame + history follow through to the
new location.

Updated README.md and docs/VENDOR_LOCKIN.md references plus the package
README header. No code changes.
2026-05-27 16:17:47 +00:00

16 lines
500 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/admin-icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Admin · Warmbly</title>
<meta name="apple-mobile-web-app-title" content="Admin · Warmbly" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>