Files
Project-Manager/frontend/index.html
Ryan Lancaster 9cc677ce68
All checks were successful
continuous-integration/drone/push Build is passing
feat: PWA + full web app — service worker, routing, mobile responsive
2026-03-18 17:42:34 -04:00

26 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#090910" />
<meta name="color-scheme" content="dark" />
<meta name="description" content="Project Hub — all your projects, tasks, and features in one place." />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Project Hub" />
<!-- Open Graph -->
<meta property="og:title" content="Project Hub" />
<meta property="og:description" content="All your projects, tasks, and features in one place." />
<meta property="og:type" content="website" />
<link rel="icon" type="image/svg+xml" href="/icons/icon.svg" />
<link rel="apple-touch-icon" href="/icons/icon.svg" />
<title>Project Hub</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>