-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 1.58 KB
/
index.html
File metadata and controls
33 lines (32 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta
charset="UTF-8"
name="description"
content="Nutrify is an iOS application designed to make learning about whole foods fun and in turn, reduce the intake of ultra-processed foods. It provides personalized nutrition recommendations, tracks your daily food intake, and offers a community to share your progress with others. It is the perfect tool for anyone looking to improve their health and wellbeing. Nutrify is available on the App Store. Whole food scanner, nutrition and calorie tracker, visual healthy food diary."
/>
<link rel="icon" type="image/png" href="/nutrify-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nutrify: Whole Food Scanner</title>
</head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-JWRJRY9ZRL"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-JWRJRY9ZRL");
</script>
<body
class="absolute inset-0 h-full w-full bg-slate-100 bg-[linear-gradient(to_right,#80808012_1px,transparent_1px),linear-gradient(to_bottom,#80808012_1px,transparent_1px)] bg-[size:24px_24px] selection:bg-emerald-400 selection:text-white"
>
<div class="flex flex-col min-h-screen" id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>