WorkIt/public/index.html
Devon Campbell 960e9e0ff8 Initial commit
2025-10-19 15:33:51 -04:00

26 lines
776 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>WorkIt</title>
<!-- PWA Manifest -->
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#121212">
<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="WorkIt">
<link rel="apple-touch-icon" href="/icons/icon-192x192.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main id="app-container"></main>
<script src="/idb.umd.js"></script>
<script src="app.js"></script>
</body>
</html>