Infinity-1995 commited on
Commit
a17a287
·
verified ·
1 Parent(s): a691c99

Update confirmation.html

Browse files
Files changed (1) hide show
  1. confirmation.html +8 -53
confirmation.html CHANGED
@@ -136,60 +136,15 @@ body {
136
  </button>
137
  </div>
138
 
139
- <!-- FOOTER -->
140
- <footer class="bg-emerald-600 text-white py-14 mt-20">
141
 
142
- <div class="w-full px-10 text-left">
143
-
144
- <!-- BRAND -->
145
- <div class="mb-10">
146
- <h2 class="text-2xl font-extrabold">NourishNet</h2>
147
- <p class="text-white/80 mt-2">
148
- AI-powered food surplus redistribution for a zero-waste UAE.
149
- </p>
150
- </div>
151
-
152
- <!-- SECTIONS -->
153
- <div class="space-y-10 text-white/90">
154
-
155
- <!-- PLATFORM -->
156
- <div>
157
- <p class="font-extrabold mb-3">Platform</p>
158
- <div class="space-y-1 text-white/80">
159
- <p>Dashboard</p>
160
- <p>Impact</p>
161
- <p>Leaderboard</p>
162
- </div>
163
- </div>
164
-
165
- <!-- LEARN -->
166
- <div>
167
- <p class="font-extrabold mb-3">Learn</p>
168
- <div class="space-y-1 text-white/80">
169
- <p>About</p>
170
- <p>How it works</p>
171
- </div>
172
- </div>
173
-
174
- <!-- CONTACT -->
175
- <div>
176
- <p class="font-extrabold mb-3">Contact</p>
177
- <div class="space-y-1 text-white/80">
178
- <p>hello@nourishnet.ae</p>
179
- <p>Dubai, UAE</p>
180
- </div>
181
- </div>
182
-
183
- </div>
184
-
185
- <!-- COPYRIGHT -->
186
- <div class="pt-8 mt-10 border-t border-white/20 text-white/80 text-sm">
187
- © 2026 NourishNet. All rights reserved.
188
- </div>
189
-
190
- </div>
191
-
192
- </footer>
193
 
194
  <!-- SCRIPT -->
195
  <script>
 
136
  </button>
137
  </div>
138
 
139
+ <div id="footer"></div>
 
140
 
141
+ <script>
142
+ fetch("footer.html")
143
+ .then(res => res.text())
144
+ .then(data => {
145
+ document.getElementById("footer").innerHTML = data;
146
+ });
147
+ </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
 
149
  <!-- SCRIPT -->
150
  <script>