-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 1.05 KB
/
index.html
File metadata and controls
21 lines (21 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicon & app icons -->
<!-- Favicons: provide multiple sizes to avoid browser scaling/squishing -->
<link rel="icon" type="image/png" sizes="32x32" href="/images/fitbuddy_favicon.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/images/fitbuddy_favicon.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/fitbuddy_favicon.png" />
<!-- fallback -->
<link rel="shortcut icon" href="/images/fitbuddy_favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FitBuddyAI - Your AI Fitness Companion</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
</head>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- Google Identity Services (renders the official Google Sign-In button) -->
<script src="https://accounts.google.com/gsi/client" async defer></script>
</body>
</html>