Add 2 files
Browse files- index.html +59 -0
index.html
CHANGED
|
@@ -495,5 +495,64 @@
|
|
| 495 |
</li>
|
| 496 |
<li>
|
| 497 |
<a href="impact.html" class="text-base text-gray-400 hover:text-white">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 498 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 499 |
</html>
|
|
|
|
| 495 |
</li>
|
| 496 |
<li>
|
| 497 |
<a href="impact.html" class="text-base text-gray-400 hover:text-white">
|
| 498 |
+
Impact
|
| 499 |
+
</a>
|
| 500 |
+
</li>
|
| 501 |
+
<li>
|
| 502 |
+
<a href="partners.html" class="text-base text-gray-400 hover:text-white">
|
| 503 |
+
Partners
|
| 504 |
+
</a>
|
| 505 |
+
</li>
|
| 506 |
+
</ul>
|
| 507 |
+
</div>
|
| 508 |
+
|
| 509 |
+
<div>
|
| 510 |
+
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
|
| 511 |
+
Get Involved
|
| 512 |
+
</h3>
|
| 513 |
+
<ul class="mt-4 space-y-4">
|
| 514 |
+
<li>
|
| 515 |
+
<a href="donate.html" class="text-base text-gray-400 hover:text-white">
|
| 516 |
+
Donate
|
| 517 |
+
</a>
|
| 518 |
+
</li>
|
| 519 |
+
<li>
|
| 520 |
+
<a href="volunteer.html" class="text-base text-gray-400 hover:text-white">
|
| 521 |
+
Volunteer
|
| 522 |
+
</a>
|
| 523 |
+
</li>
|
| 524 |
+
<li>
|
| 525 |
+
<a href="careers.html" class="text-base text-gray-400 hover:text-white">
|
| 526 |
+
Careers
|
| 527 |
+
</a>
|
| 528 |
+
</li>
|
| 529 |
+
<li>
|
| 530 |
+
<a href="contact.html" class="text-base text-gray-400 hover:text-white">
|
| 531 |
+
Contact
|
| 532 |
+
</a>
|
| 533 |
+
</li>
|
| 534 |
+
</ul>
|
| 535 |
+
</div>
|
| 536 |
+
</div>
|
| 537 |
+
|
| 538 |
+
<div class="mt-12 border-t border-gray-800 pt-8">
|
| 539 |
+
<p class="text-base text-gray-400 text-center">
|
| 540 |
+
© 2023 CreateLab Africa. All rights reserved.
|
| 541 |
+
</p>
|
| 542 |
+
</div>
|
| 543 |
+
</div>
|
| 544 |
+
</footer>
|
| 545 |
|
| 546 |
+
<script>
|
| 547 |
+
// Mobile menu toggle
|
| 548 |
+
document.getElementById('mobile-menu-button').addEventListener('click', function() {
|
| 549 |
+
const menu = document.getElementById('mobile-menu');
|
| 550 |
+
if (menu.classList.contains('hidden')) {
|
| 551 |
+
menu.classList.remove('hidden');
|
| 552 |
+
} else {
|
| 553 |
+
menu.classList.add('hidden');
|
| 554 |
+
}
|
| 555 |
+
});
|
| 556 |
+
</script>
|
| 557 |
+
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Araptoo/createlab" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 558 |
</html>
|