initial comit

This commit is contained in:
2025-10-12 16:47:41 -04:00
commit 3d24214064
34 changed files with 5786 additions and 0 deletions

29
index.html Normal file
View File

@@ -0,0 +1,29 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta
name="theme-color"
content="#0EA5E9"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="#38BDF8"
media="(prefers-color-scheme: dark)"
/>
<title>Baby Tracker</title>
</head>
<body class="bg-background">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>