-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
457 lines (402 loc) · 12.7 KB
/
index.html
File metadata and controls
457 lines (402 loc) · 12.7 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>NomNom — College Food Budgeting</title>
<link rel="stylesheet" href="styles.css" />
<style>
/* ── HERO ── */
.hero {
background: var(--green);
color: var(--white);
padding: 5rem 2rem 4rem;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 70% 40%, rgba(74,122,40,0.5) 0%, transparent 65%),
radial-gradient(ellipse at 20% 80%, rgba(232,130,58,0.15) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-eyebrow {
display: inline-block;
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.25);
border-radius: 50px;
padding: 0.35rem 1rem;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 1.25rem;
}
.hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 700;
line-height: 1.15;
margin-bottom: 1rem;
}
.hero h1 em {
font-style: normal;
color: #AEDDA0;
}
.hero p {
font-size: 1.15rem;
opacity: 0.85;
max-width: 520px;
margin: 0 auto 2rem;
line-height: 1.6;
}
.hero-ctas {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.hero-ctas .btn-white {
background: var(--white);
color: var(--green);
font-weight: 700;
}
.hero-ctas .btn-white:hover {
background: var(--cream);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-ctas .btn-outline {
background: transparent;
color: var(--white);
border: 2px solid rgba(255,255,255,0.5);
}
.hero-ctas .btn-outline:hover {
background: rgba(255,255,255,0.1);
border-color: white;
}
/* ── STATS STRIP ── */
.stats-strip {
background: var(--white);
border-bottom: 1px solid rgba(45,80,22,0.08);
}
.stats-strip-inner {
max-width: 1100px;
margin: 0 auto;
padding: 1.5rem 2rem;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 1rem;
}
.strip-stat { text-align: center; }
.strip-stat .num {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
font-weight: 700;
color: var(--green);
}
.strip-stat .lbl { font-size: 0.8rem; color: var(--gray); margin-top: 0.1rem; }
/* ── FEATURES ── */
.features {
max-width: 1100px;
margin: 4rem auto;
padding: 0 2rem;
}
.features-header {
text-align: center;
margin-bottom: 2.5rem;
}
.features-header h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: var(--green);
margin-bottom: 0.5rem;
}
.features-header p { color: var(--gray); }
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.25rem;
}
.feature-card {
background: var(--white);
border-radius: var(--radius);
padding: 2rem;
box-shadow: var(--shadow-sm);
border: 1px solid rgba(45,80,22,0.07);
transition: all 0.25s;
}
.feature-card:hover {
box-shadow: var(--shadow);
transform: translateY(-3px);
}
.feature-icon {
width: 52px;
height: 52px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-bottom: 1rem;
}
.feature-icon.green { background: var(--green-muted); }
.feature-icon.orange { background: var(--orange-light); }
.feature-card h3 {
font-family: 'Playfair Display', serif;
font-size: 1.15rem;
color: var(--charcoal);
margin-bottom: 0.5rem;
}
.feature-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
/* ── COLLAGE ── */
.collage-section {
background: var(--green-muted);
padding: 4rem 2rem;
}
.collage-inner {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
.collage-text h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: var(--green);
margin-bottom: 1rem;
}
.collage-text p { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.collage-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
}
.collage-item {
background: var(--white);
border-radius: var(--radius);
padding: 1.5rem;
text-align: center;
font-size: 2.5rem;
box-shadow: var(--shadow-sm);
border: 1px solid rgba(45,80,22,0.07);
}
.collage-item .food-label {
font-size: 0.75rem;
color: var(--gray);
margin-top: 0.4rem;
font-weight: 500;
}
/* ── TEAM ── */
.team-section {
max-width: 1100px;
margin: 4rem auto;
padding: 0 2rem;
text-align: center;
}
.team-section h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: var(--green);
margin-bottom: 0.5rem;
}
.team-section > p { color: var(--gray); margin-bottom: 2rem; }
.team-grid {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}
.team-card {
background: var(--white);
border-radius: var(--radius);
padding: 1.5rem;
width: 180px;
box-shadow: var(--shadow-sm);
border: 1px solid rgba(45,80,22,0.07);
transition: all 0.2s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-avatar {
width: 64px;
height: 64px;
border-radius: 50%;
background: var(--green-muted);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
margin: 0 auto 0.75rem;
}
.team-card h4 {
font-size: 0.95rem;
font-weight: 600;
color: var(--charcoal);
margin-bottom: 0.2rem;
}
.team-card p { font-size: 0.78rem; color: var(--gray); }
/* ── MISSION ── */
.mission-section {
background: var(--green);
color: var(--white);
text-align: center;
padding: 4rem 2rem;
}
.mission-inner { max-width: 620px; margin: 0 auto; }
.mission-inner h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
margin-bottom: 1rem;
}
.mission-inner p { font-size: 1.1rem; opacity: 0.85; line-height: 1.7; margin-bottom: 2rem; }
@media (max-width: 768px) {
.collage-inner { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<nav>
<a href="index.html" class="nav-logo"><span>🥦</span> NomNom</a>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="start.html">Dashboard</a></li>
<li><a href="dining-dollars.html">Dining $</a></li>
<li><a href="swipes.html">Swipes</a></li>
<li><a href="food-good.html">Is Food Good?</a></li>
<li><a href="login.html" class="nav-cta">Sign In</a></li>
</ul>
</nav>
<!-- HERO -->
<section class="hero">
<div class="hero-content">
<div class="hero-eyebrow fade-up">🎓 Built for College Students</div>
<h1 class="fade-up-2">Make your <em>dining plan</em> actually work for you.</h1>
<p class="fade-up-3">Track dining dollars, manage swipes, and discover the best food on campus — all in one place.</p>
<div class="hero-ctas fade-up-4">
<a href="start.html" class="btn btn-white btn-lg">🍽️ Let's Start Budgeting</a>
<a href="food-good.html" class="btn btn-outline btn-lg">Is Food Good? →</a>
</div>
</div>
</section>
<!-- STATS STRIP -->
<section class="stats-strip">
<div class="stats-strip-inner">
<div class="strip-stat">
<div class="num">$2,400</div>
<div class="lbl">avg. dining plan value</div>
</div>
<div class="strip-stat">
<div class="num">30%</div>
<div class="lbl">students waste balance</div>
</div>
<div class="strip-stat">
<div class="num">5 min</div>
<div class="lbl">to get set up</div>
</div>
<div class="strip-stat">
<div class="num">100%</div>
<div class="lbl">free to use</div>
</div>
</div>
</section>
<!-- FEATURES -->
<section class="features">
<div class="features-header fade-up">
<h2>Everything you need to eat smarter</h2>
<p>Stop guessing and start planning — your dining dollars deserve better.</p>
</div>
<div class="features-grid">
<div class="feature-card fade-up">
<div class="feature-icon green">💰</div>
<h3>Dining Dollars Tracker</h3>
<p>See exactly where your money is going — restaurants, groceries, or on-campus spots. Stay on pace all semester.</p>
</div>
<div class="feature-card fade-up-2">
<div class="feature-icon orange">🔄</div>
<h3>Swipe Manager</h3>
<p>Track your weekly swipes, dining hall visits, and outtakes. Never let a swipe go to waste again.</p>
</div>
<div class="feature-card fade-up-3">
<div class="feature-icon green">⭐</div>
<h3>Is Food Good?</h3>
<p>Get personalized meal suggestions based on your diet preferences, cuisine tastes, and today's dining hall menu.</p>
</div>
<div class="feature-card fade-up-4">
<div class="feature-icon orange">📊</div>
<h3>Pace Tracker</h3>
<p>Are you spending too fast? Too slow? We'll tell you if you're on track to make it to the end of the semester.</p>
</div>
<div class="feature-card fade-up">
<div class="feature-icon green">🛒</div>
<h3>Grocery Planner</h3>
<p>Optimize your grocery runs against your remaining balance. Build a shopping list that stretches every dollar.</p>
</div>
<div class="feature-card fade-up-2">
<div class="feature-icon orange">🔔</div>
<h3>Smart Alerts</h3>
<p>Get notified before you overspend or end the semester with leftover balance you can't use.</p>
</div>
</div>
</section>
<!-- MISSION + COLLAGE -->
<section class="collage-section">
<div class="collage-inner">
<div class="collage-text fade-up">
<h2>Our Mission</h2>
<p>College dining plans are expensive and confusing. Students consistently overspend early in the semester or waste money at the end. NomNom was built to change that — giving every student the clarity to eat well, spend wisely, and enjoy campus food without the stress.</p>
<a href="login.html" class="btn btn-primary">Get Started Free</a>
</div>
<div class="collage-grid fade-up-2">
<div class="collage-item">🍕<div class="food-label">Pizza Night</div></div>
<div class="collage-item">🥗<div class="food-label">Fresh Salad</div></div>
<div class="collage-item">🍜<div class="food-label">Ramen Bowl</div></div>
<div class="collage-item">🥙<div class="food-label">Quick Wrap</div></div>
</div>
</div>
</section>
<!-- TEAM -->
<section class="team-section">
<h2>Meet the Team</h2>
<p>Students building for students.</p>
<div class="team-grid">
<div class="team-card">
<div class="team-avatar">👤</div>
<h4>Team Member 1</h4>
<p>Frontend / Design</p>
</div>
<div class="team-card">
<div class="team-avatar">👤</div>
<h4>Team Member 2</h4>
<p>Backend / Data</p>
</div>
<div class="team-card">
<div class="team-avatar">👤</div>
<h4>Team Member 3</h4>
<p>Product / UX</p>
</div>
<div class="team-card">
<div class="team-avatar">👤</div>
<h4>Team Member 4</h4>
<p>Full Stack</p>
</div>
</div>
</section>
<!-- MISSION CTA -->
<section class="mission-section">
<div class="mission-inner">
<h2>Ready to eat smarter?</h2>
<p>Join thousands of students who've taken control of their dining plan. It takes 5 minutes to set up.</p>
<a href="login.html" class="btn btn-white btn-lg">Create Free Account →</a>
</div>
</section>
<footer>
<p>© 2025 NomNom — Built with 🥦 for college students | <a href="#">Privacy</a> | <a href="#">Contact</a></p>
</footer>
</body>
</html>