Initial commit

This commit is contained in:
Devon Campbell 2025-10-19 15:33:51 -04:00
commit 960e9e0ff8
20 changed files with 877 additions and 0 deletions

26
public/index.html Normal file
View file

@ -0,0 +1,26 @@
<!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>