-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (90 loc) · 3.99 KB
/
Copy pathindex.html
File metadata and controls
99 lines (90 loc) · 3.99 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="logo.jpg.avif" href="logo.jpg.avif">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>NutriMatch — Home </title>
<link rel="stylesheet" href="style.css" />
<body>
<header class="site-header">
<div class="container header-inner">
<img src="logo.jpg.avif" alt="logo" width="70px" height="70">
<a class="brand" href="index.html">NutriMatch</a>
<nav class="main-nav" aria-label="Main navigation">
<a href="index.html" class="nav-link">Home</a>
<a href="ai.html" class="nav-link">AI Nutrition</a>
<a href="foodint.html" class="nav-link">Food Intelligence</a>
<a href="healtthtrack.html" class="nav-link">Health Tracking</a>
<a href="contact.html" class="nav-link btn-cta">Contact</a>
</nav>
</div>
</header>
<main>
<section class="hero hero-home" aria-label="Hero">
<div class="hero-inner container">
<h1>AI-Powered Nutrition Intelligence</h1>
<p class="lead">Personalized meal suggestions, smart swaps and recipe analysis — made creative.</p>
<div class="hero-ctas">
<a class="btn" href="ai.html">Explore AI Nutrition</a>
<a class="btn ghost" href="foodint.html">Discover Food Intelligence</a>
</div>
</div>
</section>
<section class="section container features-preview" id="features-preview">
<h2>Featured Modules</h2>
<div class="grid-3">
<article class="card">
<img src="ai-calorie-tracker-photo-food-journal-goldi-2.jpg" alt="AI Nutrition" />
<h3>AI Nutrition</h3>
<p>Advanced meal matching and macro-aware recipes using AI models.</p>
<a class="small-link" href="ai.html">Open Feature →</a>
</article>
<article class="card">
<img src="1_9sjPnug06-SEDKvUxuSUHg.jpg" alt="Food Intelligence" />
<h3>Food Intelligence</h3>
<p>Ingredient swaps, allergy-aware recommendations and sustainability hints.</p>
<a class="small-link" href="foodint.html">Open Feature →</a>
</article>
<article class="card">
<img src="istockphoto-2155532154-612x612.jpg" alt="Health Tracking" />
<h3>Health Tracking</h3>
<p>Track macros, calories and trends to stay on target with visual insights.</p>
<a class="small-link" href="healtthtrack.html">Open Feature →</a>
</article>
</div>
</section>
<section class="section container about-preview">
<div class="stack">
<h2>Why NutriMatch?</h2>
<p class="lead" style="font-family:'Poppins', sans-serif; font-size:18px; color:#444; line-height:1.7; text-align:center; margin:25px auto; max-width:800px; letter-spacing:0.3px;">
Combine <span style="color:#00c896;">nutritional science</span> with user preferences and <span style="color:#00c896;">local ingredient intelligence</span> to deliver meal plans that taste good and work for your life.
</p>
<a class="btn" href="contact.html">Get in touch</a>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<div class="footer-grid">
<div>
<strong>NutriMatch</strong><br/>
AI-driven meals & smarter grocery lists
</div>
<div>
<strong>Contact</strong><br/>
contact@nutrimatch.example
</div>
<div>
<strong>Follow</strong><br/>
Instagram • Twitter • LinkedIn
</div>
</div>
<p class="muted" style="text-align:center; font-size:14px; color:#191515; font-family:'Poppins', sans-serif; letter-spacing:0.5px; margin-top:20px;">
© <span id="yr"></span> <span style="color:#1b1f1e;">NutriMatch</span>. Designed by <span style="color:#131615;">Sahil</span>
</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>