Infinity-1995 commited on
Commit
fc67fa6
·
verified ·
1 Parent(s): 5e1b1b7

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +97 -19
index.html CHANGED
@@ -1,19 +1,97 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>NourishNet</title>
6
+ <script src="https://cdn.tailwindcss.com"></script>
7
+ </head>
8
+
9
+ <body class="bg-[#F7F5F0] font-sans">
10
+
11
+ <!-- NAVBAR -->
12
+ <nav class="flex justify-between items-center px-8 py-4 bg-[#0ea86f] text-white">
13
+ <div class="text-2xl font-bold">NourishNet</div>
14
+
15
+ <div class="hidden md:flex gap-8 font-medium">
16
+ <a href="#">Home</a>
17
+ <a href="#">How it works</a>
18
+ <a href="#">About</a>
19
+ </div>
20
+
21
+ <button class="bg-white text-[#0ea86f] px-5 py-2 rounded-full font-semibold">
22
+ Join as restaurant
23
+ </button>
24
+ </nav>
25
+
26
+ <!-- HERO -->
27
+ <section class="text-center px-6 pt-24 pb-10">
28
+ <h1 class="text-5xl md:text-6xl font-extrabold text-gray-900">
29
+ Turn tonight's surplus into
30
+ <span class="text-[#1D9E75]">tomorrow’s meal</span>
31
+ </h1>
32
+
33
+ <p class="max-w-2xl mx-auto mt-6 text-gray-600 text-lg">
34
+ The UAE wastes millions of tons of food yearly. NourishNet uses AI
35
+ to redistribute surplus food to communities in need.
36
+ </p>
37
+
38
+ <div class="flex justify-center gap-4 mt-8">
39
+ <button class="bg-[#1D9E75] text-white px-6 py-3 rounded-full font-semibold hover:scale-105 transition">
40
+ Start donating
41
+ </button>
42
+
43
+ <button class="bg-white border px-6 py-3 rounded-full font-semibold hover:scale-105 transition">
44
+ Learn more
45
+ </button>
46
+ </div>
47
+ </section>
48
+
49
+ <!-- STATS -->
50
+ <section class="max-w-5xl mx-auto mt-12 bg-[#1D9E75] text-white rounded-xl grid grid-cols-2 md:grid-cols-4 text-center py-6">
51
+ <div>
52
+ <div class="text-2xl font-bold">42,850+</div>
53
+ <div class="text-sm">Meals saved</div>
54
+ </div>
55
+ <div>
56
+ <div class="text-2xl font-bold">312</div>
57
+ <div class="text-sm">Restaurants</div>
58
+ </div>
59
+ <div>
60
+ <div class="text-2xl font-bold">18.7</div>
61
+ <div class="text-sm">Tons CO₂</div>
62
+ </div>
63
+ <div>
64
+ <div class="text-2xl font-bold">45</div>
65
+ <div class="text-sm">Communities</div>
66
+ </div>
67
+ </section>
68
+
69
+ <!-- HOW IT WORKS -->
70
+ <section class="text-center mt-20 px-6">
71
+ <h2 class="text-3xl font-bold mb-10">How it works</h2>
72
+
73
+ <div class="grid md:grid-cols-3 gap-6 max-w-5xl mx-auto">
74
+ <div class="bg-white p-6 rounded-xl shadow">
75
+ <h3 class="font-bold text-lg">Log surplus</h3>
76
+ <p class="text-gray-600 mt-2">Restaurants input leftover food</p>
77
+ </div>
78
+
79
+ <div class="bg-white p-6 rounded-xl shadow">
80
+ <h3 class="font-bold text-lg">AI matching</h3>
81
+ <p class="text-gray-600 mt-2">Smart routing based on need</p>
82
+ </div>
83
+
84
+ <div class="bg-white p-6 rounded-xl shadow">
85
+ <h3 class="font-bold text-lg">Delivery</h3>
86
+ <p class="text-gray-600 mt-2">Volunteers distribute food</p>
87
+ </div>
88
+ </div>
89
+ </section>
90
+
91
+ <!-- FOOTER -->
92
+ <footer class="text-center text-gray-500 mt-24 py-10">
93
+ © 2026 NourishNet — Turning surplus into impact
94
+ </footer>
95
+
96
+ </body>
97
+ </html>