File size: 30,900 Bytes
e6631ab 7698710 2e3b466 3b2603c 957adfd 8c7d5c7 957adfd 8c7d5c7 e6631ab | 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 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CreateLab Africa - Empowering African Innovators</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
body {
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
.hero-gradient {
background: linear-gradient(135deg, #1a365d 0%, #153e75 50%, #1a5276 100%);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #4299e1;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-lg fixed w-full z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex items-center">
<div class="flex-shrink-0">
<a href="index.html">
<img class="h-12" src="https://via.placeholder.com/150x50?text=CreateLab+Africa" alt="CreateLab Africa Logo">
</a>
</div>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-8">
<a href="index.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium">Home</a>
<a href="about.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium">About</a>
<a href="programs.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium">Programs</a>
<a href="impact.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium">Impact</a>
<a href="partners.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium">Partners</a>
<a href="contact.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium">Contact</a>
</div>
</div>
<div class="hidden md:block">
<a href="donate.html" class="ml-8 whitespace-nowrap inline-flex items-center justify-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700">
Support Our Mission
</a>
</div>
<div class="-mr-2 flex md:hidden">
<button type="button" class="bg-white inline-flex items-center justify-center p-2 rounded-md text-gray-800 hover:text-blue-600 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden md:hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3 bg-white">
<a href="index.html" class="block px-3 py-2 rounded-md text-base font-medium text-gray-800 hover:text-blue-600 hover:bg-gray-50">Home</a>
<a href="about.html" class="block px-3 py-2 rounded-md text-base font-medium text-gray-800 hover:text-blue-600 hover:bg-gray-50">About</a>
<a href="programs.html" class="block px-3 py-2 rounded-md text-base font-medium text-gray-800 hover:text-blue-600 hover:bg-gray-50">Programs</a>
<a href="impact.html" class="block px-3 py-2 rounded-md text-base font-medium text-gray-800 hover:text-blue-600 hover:bg-gray-50">Impact</a>
<a href="partners.html" class="block px-3 py-2 rounded-md text-base font-medium text-gray-800 hover:text-blue-600 hover:bg-gray-50">Partners</a>
<a href="contact.html" class="block px-3 py-2 rounded-md text-base font-medium text-gray-800 hover:text-blue-600 hover:bg-gray-50">Contact</a>
<a href="donate.html" class="block px-3 py-2 rounded-md text-base font-medium text-white bg-blue-600 hover:bg-blue-700">Support Our Mission</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient pt-24 pb-32 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-12 lg:gap-8">
<div class="px-4 sm:px-0 sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left lg:flex lg:items-center">
<div>
<h1 class="mt-4 text-4xl tracking-tight font-extrabold sm:mt-5 sm:leading-none lg:mt-6 lg:text-5xl xl:text-6xl">
<span class="block">Empowering Africa's</span>
<span class="block text-blue-300">Next Generation</span>
<span class="block">of Innovators</span>
</h1>
<p class="mt-3 text-base text-blue-100 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
We're building an inclusive and innovative Africa where every young mind is empowered to create, explore, and lead through STEM.
</p>
<div class="mt-10 sm:flex sm:justify-center lg:justify-start">
<div class="rounded-md shadow">
<a href="programs.html" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10">
Explore Programs
</a>
</div>
<div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3">
<a href="donate.html" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 hover:bg-blue-600 md:py-4 md:text-lg md:px-10">
Support Our Mission
</a>
</div>
</div>
</div>
</div>
<div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center">
<div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md">
<div class="relative block w-full bg-white rounded-lg overflow-hidden">
<img class="animate-float w-full" src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80" alt="Students learning STEM">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Featured Programs -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Our Programs</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Transforming STEM Education
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Discover our flagship programs designed to inspire and educate
</p>
</div>
<div class="mt-16 grid grid-cols-1 gap-8 md:grid-cols-3">
<!-- Program 1 -->
<div class="bg-gray-50 rounded-xl shadow-lg overflow-hidden transition-all duration-300 card-hover">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg">
<i class="fas fa-flask text-blue-600 text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">STEM Labs</h3>
</div>
</div>
<div class="mt-4">
<p class="text-base text-gray-500">
Hands-on learning spaces equipped with modern technology for practical STEM education.
</p>
</div>
<div class="mt-6">
<a href="programs.html#stem-labs" class="text-blue-600 hover:text-blue-800 font-medium text-sm flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Program 2 -->
<div class="bg-gray-50 rounded-xl shadow-lg overflow-hidden transition-all duration-300 card-hover">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg">
<i class="fas fa-chalkboard-teacher text-blue-600 text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Teacher Training</h3>
</div>
</div>
<div class="mt-4">
<p class="text-base text-gray-500">
Professional development programs to enhance STEM teaching methodologies.
</p>
</div>
<div class="mt-6">
<a href="programs.html#teacher-training" class="text-blue-600 hover:text-blue-800 font-medium text-sm flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Program 3 -->
<div class="bg-gray-50 rounded-xl shadow-lg overflow-hidden transition-all duration-300 card-hover">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg">
<i class="fas fa-female text-blue-600 text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Girls in STEM</h3>
</div>
</div>
<div class="mt-4">
<p class="text-base text-gray-500">
Initiatives to increase participation of girls and young women in STEM fields.
</p>
</div>
<div class="mt-6">
<a href="programs.html#girls-in-stem" class="text-blue-600 hover:text-blue-800 font-medium text-sm flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="programs.html" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700">
View All Programs
</a>
</div>
</div>
</section>
<!-- About Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 lg:items-center">
<div>
<img class="w-full rounded-lg shadow-xl" src="https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Students working together">
</div>
<div class="mt-12 lg:mt-0">
<h2 class="text-3xl font-extrabold tracking-tight text-gray-900 sm:text-4xl">
About CreateLab Africa
</h2>
<p class="mt-3 text-lg text-gray-500">
We are a pan-African organization dedicated to transforming STEM education across the continent.
</p>
<div class="mt-8">
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i class="fas fa-bullseye"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Our Vision</h3>
<p class="mt-2 text-base text-gray-500">
To build an inclusive and innovative Africa where every young mind is empowered to create, explore, and lead through STEM.
</p>
</div>
</div>
<div class="mt-8">
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i class="fas fa-tasks"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Our Mission</h3>
<p class="mt-2 text-base text-gray-500">
To inspire and nurture the next generation of African innovators through hands-on STEM education.
</p>
</div>
</div>
</div>
</div>
<div class="mt-8">
<a href="about.html" class="text-base font-medium text-blue-600 hover:text-blue-500">
Learn more about us <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Impact Stats -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Our Impact</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Changing Lives Through STEM
</p>
</div>
<div class="mt-16">
<div class="grid grid-cols-1 gap-8 md:grid-cols-3">
<div class="bg-gray-50 p-8 rounded-xl text-center">
<div class="flex items-center justify-center h-16 w-16 rounded-full bg-blue-100 mx-auto">
<i class="fas fa-users text-blue-600 text-2xl"></i>
</div>
<h3 class="mt-6 text-4xl font-extrabold text-gray-900">25,000+</h3>
<p class="mt-2 text-lg text-gray-500">Students Empowered</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl text-center">
<div class="flex items-center justify-center h-16 w-16 rounded-full bg-blue-100 mx-auto">
<i class="fas fa-school text-blue-600 text-2xl"></i>
</div>
<h3 class="mt-6 text-4xl font-extrabold text-gray-900">150+</h3>
<p class="mt-2 text-lg text-gray-500">Schools Reached</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl text-center">
<div class="flex items-center justify-center h-16 w-16 rounded-full bg-blue-100 mx-auto">
<i class="fas fa-female text-blue-600 text-2xl"></i>
</div>
<h3 class="mt-6 text-4xl font-extrabold text-gray-900">45%</h3>
<p class="mt-2 text-lg text-gray-500">Female Participation</p>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="impact.html" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700">
See Our Full Impact
</a>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Success Stories</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
What People Are Saying
</p>
</div>
<div class="mt-16 grid grid-cols-1 gap-8 md:grid-cols-2">
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Amina Bello</h4>
<p class="text-sm text-gray-500">Robotics Engineer, Lagos</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600 italic">
"CreateLab Africa changed my life. Through their robotics program, I discovered my passion for engineering. Today, I'm working on autonomous vehicles for African cities."
</p>
</div>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Kwame Asante</h4>
<p class="text-sm text-gray-500">Computer Science Teacher, Accra</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600 italic">
"The educator training transformed my teaching approach. I now use hands-on methods that engage my students deeply in STEM concepts they previously found difficult."
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Partners -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Our Partners</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Collaborating for Greater Impact
</p>
</div>
<div class="mt-16">
<div class="grid grid-cols-2 gap-8 md:grid-cols-4 lg:grid-cols-6">
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://via.placeholder.com/150x60?text=Partner+1" alt="Partner Logo">
</div>
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://via.placeholder.com/150x60?text=Partner+2" alt="Partner Logo">
</div>
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://via.placeholder.com/150x60?text=Partner+3" alt="Partner Logo">
</div>
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://via.placeholder.com/150x60?text=Partner+4" alt="Partner Logo">
</div>
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://via.placeholder.com/150x60?text=Partner+5" alt="Partner Logo">
</div>
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://via.placeholder.com/150x60?text=Partner+6" alt="Partner Logo">
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="partners.html" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700">
Become a Partner
</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="bg-blue-700">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
<span class="block">Ready to make a difference?</span>
<span class="block text-blue-200">Join us in transforming STEM education in Africa.</span>
</h2>
<div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
<div class="inline-flex rounded-md shadow">
<a href="donate.html" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-blue-600 bg-white hover:bg-blue-50">
Donate Now
</a>
</div>
<div class="ml-3 inline-flex rounded-md shadow">
<a href="contact.html" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700">
Contact Us
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="col-span-2">
<a href="index.html">
<img class="h-12" src="https://via.placeholder.com/150x50?text=CreateLab+Africa" alt="CreateLab Africa Logo">
</a>
<p class="mt-4 text-sm text-gray-400">
Empowering Africa's next generation of innovators through STEM education and opportunities.
</p>
<div class="mt-6 flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
Quick Links
</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="about.html" class="text-base text-gray-400 hover:text-white">
About Us
</a>
</li>
<li>
<a href="programs.html" class="text-base text-gray-400 hover:text-white">
Programs
</a>
</li>
<li>
<a href="impact.html" class="text-base text-gray-400 hover:text-white">
Impact
</a>
</li>
<li>
<a href="partners.html" class="text-base text-gray-400 hover:text-white">
Partners
</a>
</li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
Get Involved
</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="donate.html" class="text-base text-gray-400 hover:text-white">
Donate
</a>
</li>
<li>
<a href="volunteer.html" class="text-base text-gray-400 hover:text-white">
Volunteer
</a>
</li>
<li>
<a href="careers.html" class="text-base text-gray-400 hover:text-white">
Careers
</a>
</li>
<li>
<a href="contact.html" class="text-base text-gray-400 hover:text-white">
Contact
</a>
</li>
</ul>
</div>
</div>
<div class="mt-12 border-t border-gray-800 pt-8">
<p class="text-base text-gray-400 text-center">
© 2023 CreateLab Africa. All rights reserved.
</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
if (menu.classList.contains('hidden')) {
menu.classList.remove('hidden');
} else {
menu.classList.add('hidden');
}
});
</script>
<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>
</html> |