Spaces:
Running
Running
Update index.html
Browse files- index.html +8 -54
index.html
CHANGED
|
@@ -124,61 +124,15 @@ body {
|
|
| 124 |
|
| 125 |
</section>
|
| 126 |
|
| 127 |
-
<
|
| 128 |
-
<!-- FOOTER -->
|
| 129 |
-
<footer class="bg-emerald-600 text-white py-14 mt-20">
|
| 130 |
-
|
| 131 |
-
<div class="w-full px-10 text-left">
|
| 132 |
-
|
| 133 |
-
<!-- BRAND -->
|
| 134 |
-
<div class="mb-10">
|
| 135 |
-
<h2 class="text-2xl font-extrabold">NourishNet</h2>
|
| 136 |
-
<p class="text-white/80 mt-2">
|
| 137 |
-
AI-powered food surplus redistribution for a zero-waste UAE.
|
| 138 |
-
</p>
|
| 139 |
-
</div>
|
| 140 |
-
|
| 141 |
-
<!-- SECTIONS -->
|
| 142 |
-
<div class="space-y-10 text-white/90">
|
| 143 |
-
|
| 144 |
-
<!-- PLATFORM -->
|
| 145 |
-
<div>
|
| 146 |
-
<p class="font-extrabold mb-3">Platform</p>
|
| 147 |
-
<div class="space-y-1 text-white/80">
|
| 148 |
-
<p>Dashboard</p>
|
| 149 |
-
<p>Impact</p>
|
| 150 |
-
<p>Leaderboard</p>
|
| 151 |
-
</div>
|
| 152 |
-
</div>
|
| 153 |
-
|
| 154 |
-
<!-- LEARN -->
|
| 155 |
-
<div>
|
| 156 |
-
<p class="font-extrabold mb-3">Learn</p>
|
| 157 |
-
<div class="space-y-1 text-white/80">
|
| 158 |
-
<p>About</p>
|
| 159 |
-
<p>How it works</p>
|
| 160 |
-
</div>
|
| 161 |
-
</div>
|
| 162 |
-
|
| 163 |
-
<!-- CONTACT -->
|
| 164 |
-
<div>
|
| 165 |
-
<p class="font-extrabold mb-3">Contact</p>
|
| 166 |
-
<div class="space-y-1 text-white/80">
|
| 167 |
-
<p>hello@nourishnet.ae</p>
|
| 168 |
-
<p>Dubai, UAE</p>
|
| 169 |
-
</div>
|
| 170 |
-
</div>
|
| 171 |
-
|
| 172 |
-
</div>
|
| 173 |
-
|
| 174 |
-
<!-- COPYRIGHT -->
|
| 175 |
-
<div class="pt-8 mt-10 border-t border-white/20 text-white/80 text-sm">
|
| 176 |
-
© 2026 NourishNet. All rights reserved.
|
| 177 |
-
</div>
|
| 178 |
-
|
| 179 |
-
</div>
|
| 180 |
|
| 181 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 182 |
|
| 183 |
<!-- 🔥 MODAL (FIXED ONLY PART) -->
|
| 184 |
<div id="modal" class="hidden fixed inset-0 bg-black/50 flex items-center justify-center">
|
|
|
|
| 124 |
|
| 125 |
</section>
|
| 126 |
|
| 127 |
+
<div id="footer"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
|
| 129 |
+
<script>
|
| 130 |
+
fetch("footer.html")
|
| 131 |
+
.then(res => res.text())
|
| 132 |
+
.then(data => {
|
| 133 |
+
document.getElementById("footer").innerHTML = data;
|
| 134 |
+
});
|
| 135 |
+
</script>
|
| 136 |
|
| 137 |
<!-- 🔥 MODAL (FIXED ONLY PART) -->
|
| 138 |
<div id="modal" class="hidden fixed inset-0 bg-black/50 flex items-center justify-center">
|