File size: 30,696 Bytes
1014e38 |
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 559 560 561 562 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MALIBA-AI - AI for Mali's Linguistic Diversity</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>
/* Custom CSS for animations and effects */
.hero-gradient {
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #93c5fd 100%);
}
.language-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.fade-in {
animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.scroll-down {
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-20px); }
60% { transform: translateY(-10px); }
}
</style>
</head>
<body class="font-sans bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold text-xl">M</div>
<span class="text-xl font-bold text-blue-600">MALIBA-AI</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#about" class="nav-link text-gray-700 hover:text-blue-600 transition">About</a>
<a href="#philosophy" class="nav-link text-gray-700 hover:text-blue-600 transition">Philosophy</a>
<a href="#projects" class="nav-link text-gray-700 hover:text-blue-600 transition">Projects</a>
<a href="#community" class="nav-link text-gray-700 hover:text-blue-600 transition">Community</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-blue-600 transition">Contact</a>
</div>
<button class="md:hidden text-gray-700 focus:outline-none" id="menu-toggle">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile menu -->
<div class="md:hidden hidden bg-white py-2 px-4 shadow-lg" id="mobile-menu">
<a href="#about" class="block py-2 text-gray-700 hover:text-blue-600 transition">About</a>
<a href="#philosophy" class="block py-2 text-gray-700 hover:text-blue-600 transition">Philosophy</a>
<a href="#projects" class="block py-2 text-gray-700 hover:text-blue-600 transition">Projects</a>
<a href="#community" class="block py-2 text-gray-700 hover:text-blue-600 transition">Community</a>
<a href="#contact" class="block py-2 text-gray-700 hover:text-blue-600 transition">Contact</a>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient text-white py-20 md:py-32">
<div class="container mx-auto px-4 text-center fade-in">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Empowering Mali Through AI</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">
Bridging the linguistic divide with community-driven artificial intelligence solutions.
</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<a href="#about" class="bg-white text-blue-600 px-8 py-3 rounded-full font-semibold hover:bg-gray-100 transition shadow-lg">
Learn More
</a>
<a href="#community" class="border-2 border-white text-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-blue-600 transition">
Join Community
</a>
</div>
<div class="mt-16 scroll-down">
<a href="#about" class="text-white">
<i class="fas fa-chevron-down text-2xl"></i>
</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 md:py-24 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">The MALIBA-AI Initiative</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="max-w-4xl mx-auto">
<div class="mb-8">
<p class="text-lg text-gray-700 mb-6">
MALIBA-AI is a community-driven AI initiative with a name derived from Mali Ba (Great Mali) and AI (Artificial Intelligence). It is an initiative set in motion with a simple but strong objective: solve problems using artificial intelligence in Mali while ensuring no Malian is left behind by technological advances.
</p>
<p class="text-lg text-gray-700 mb-6">
A country like Mali is missing out on all of the advantages that comes with AI adoption. The primary barrier is language - most Malians don't speak French or English, the languages that dominate today's AI interfaces.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8 mt-12">
<div class="bg-blue-50 p-6 rounded-lg shadow-sm hover:shadow-md transition">
<div class="text-blue-600 mb-4">
<i class="fas fa-language text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Linguistic Inclusion</h3>
<p class="text-gray-700">
Developing AI systems that understand and speak Malian languages like Bambara, Fulfulde, and Songhay.
</p>
</div>
<div class="bg-blue-50 p-6 rounded-lg shadow-sm hover:shadow-md transition">
<div class="text-blue-600 mb-4">
<i class="fas fa-users text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Community-Driven</h3>
<p class="text-gray-700">
A collaborative effort by enthusiasts, engineers, linguists, and researchers passionate about Mali's future.
</p>
</div>
<div class="bg-blue-50 p-6 rounded-lg shadow-sm hover:shadow-md transition">
<div class="text-blue-600 mb-4">
<i class="fas fa-lock-open text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Open Source</h3>
<p class="text-gray-700">
All projects are open-source with permissive licenses to ensure wide accessibility and community ownership.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Philosophy Section -->
<section id="philosophy" class="py-16 md:py-24 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our Philosophy</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="max-w-4xl mx-auto">
<div class="bg-white p-8 rounded-lg shadow-md mb-8">
<p class="text-lg text-gray-700 mb-6">
MALIBA-AI follows the same model as most open-source projects. We take a community-driven R&D approach in our works. Any of the projects published under MALIBA-AI will not be for-profit.
</p>
<p class="text-lg text-gray-700">
This initiative has come to life as a passion project, hence it ought to be worked on with that mindset. A passionate collective looking to make an actual change with their skillsets, ensuring that no Malian is left behind by technological advances.
</p>
</div>
<div class="grid md:grid-cols-2 gap-8 mt-12">
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition">
<h3 class="text-xl font-semibold mb-4 text-blue-600">Objective</h3>
<p class="text-gray-700">
To have documentation on all projects describing if they will work for Mali and how to implement them as quickly as possible.
</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition">
<h3 class="text-xl font-semibold mb-4 text-blue-600">Approach</h3>
<p class="text-gray-700">
Community research projects going through trial and error, hypotheses, and experiments in a collaborative manner.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-16 md:py-24 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Fields of Interest</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
<p class="text-lg text-gray-600 mt-4 max-w-2xl mx-auto">
Our work focuses on three key areas to bridge the technological gap in Mali
</p>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="language-card bg-gray-50 rounded-xl overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<div class="h-48 bg-blue-600 flex items-center justify-center">
<i class="fas fa-brain text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-gray-800">Language Models</h3>
<p class="text-gray-600 mb-4">
Developing foundation models specifically trained for Malian languages, creating neural machine translation systems connecting Mali's diverse linguistic landscape.
</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Bambara</span>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Fulfulde</span>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Songhay</span>
</div>
</div>
</div>
<div class="language-card bg-gray-50 rounded-xl overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<div class="h-48 bg-blue-600 flex items-center justify-center">
<i class="fas fa-microphone-alt text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-gray-800">Speech Technologies</h3>
<p class="text-gray-600 mb-4">
Speech recognition and synthesis systems provide an interface that is natural and accessible for all Malians, regardless of literacy level or formal education.
</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">ASR</span>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">TTS</span>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">NLP</span>
</div>
</div>
</div>
<div class="language-card bg-gray-50 rounded-xl overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<div class="h-48 bg-blue-600 flex items-center justify-center">
<i class="fas fa-universal-access text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-gray-800">Accessibility Solutions</h3>
<p class="text-gray-600 mb-4">
Developing solutions on top of our AI models that address local problems with interfaces designed for users with varying levels of technical literacy.
</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Education</span>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Healthcare</span>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Agriculture</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<section id="community" class="py-16 md:py-24 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Join Our Community</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
<p class="text-lg text-gray-600 mt-4 max-w-2xl mx-auto">
MALIBA-AI is for everyone who shares our vision of linguistic inclusion through technology
</p>
</div>
<div class="max-w-4xl mx-auto">
<div class="bg-white p-8 rounded-lg shadow-md mb-12">
<p class="text-lg text-gray-700 mb-6">
We welcome AI practitioners, software engineers, language experts, educators, artists, community members, and technology enthusiasts. Every skill contributes to our mission, whether you're developing models, preserving languages, testing applications, or raising awareness.
</p>
<p class="text-lg text-gray-700">
Together, we're creating an inclusive technological ecosystem where no Malian is left behind.
</p>
</div>
<div class="grid md:grid-cols-2 gap-8">
<div class="bg-blue-600 text-white p-8 rounded-lg">
<h3 class="text-xl font-bold mb-4">Get Involved</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-code mt-1 mr-3"></i>
<span>Contribute to open-source projects</span>
</li>
<li class="flex items-start">
<i class="fas fa-language mt-1 mr-3"></i>
<span>Help document and preserve Malian languages</span>
</li>
<li class="flex items-start">
<i class="fas fa-users mt-1 mr-3"></i>
<span>Join our community discussions</span>
</li>
<li class="flex items-start">
<i class="fas fa-share-alt mt-1 mr-3"></i>
<span>Spread awareness about our mission</span>
</li>
</ul>
</div>
<div class="bg-white p-8 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-4 text-gray-800">Stay Updated</h3>
<p class="text-gray-600 mb-6">
Subscribe to our newsletter to receive updates on projects, events, and opportunities to contribute.
</p>
<form class="space-y-4">
<input type="email" placeholder="Your email address" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
<button type="submit" class="bg-blue-600 text-white px-6 py-2 rounded-lg font-medium hover:bg-blue-700 transition">
Subscribe
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Publications Section -->
<section class="py-16 md:py-24 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Publications</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
<p class="text-lg text-gray-600 mt-4 max-w-2xl mx-auto">
Our research and documentation following open science principles
</p>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg transition">
<div class="bg-blue-100 p-6">
<i class="fas fa-file-alt text-blue-600 text-4xl mb-4"></i>
<h3 class="text-xl font-bold mb-2">Whitepapers</h3>
<p class="text-gray-600">
Full specifications for projects including hypothesis, modeling, and necessary implementation information.
</p>
</div>
</div>
<div class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg transition">
<div class="bg-blue-100 p-6">
<i class="fas fa-book-open text-blue-600 text-4xl mb-4"></i>
<h3 class="text-xl font-bold mb-2">Research Papers</h3>
<p class="text-gray-600">
In-depth academic papers documenting methodologies and findings for each project.
</p>
</div>
</div>
<div class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg transition">
<div class="bg-blue-100 p-6">
<i class="fas fa-file-code text-blue-600 text-4xl mb-4"></i>
<h3 class="text-xl font-bold mb-2">Model Documentation</h3>
<p class="text-gray-600">
Comprehensive guides for using, training, evaluating, and contributing to our AI models.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 md:py-24 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Contact Us</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
<p class="text-lg text-gray-600 mt-4 max-w-2xl mx-auto">
Have questions or want to collaborate? Reach out to us!
</p>
</div>
<div class="max-w-4xl mx-auto bg-white p-8 rounded-lg shadow-md">
<div class="grid md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-bold mb-6 text-gray-800">Get In Touch</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold text-gray-800">Email</h4>
<p class="text-gray-600">contact@maliba-ai.org</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fab fa-github text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold text-gray-800">GitHub</h4>
<p class="text-gray-600">github.com/maliba-ai</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fab fa-twitter text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold text-gray-800">Twitter</h4>
<p class="text-gray-600">@maliba_ai</p>
</div>
</div>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-6 text-gray-800">Send Us a Message</h3>
<form class="space-y-4">
<div>
<input type="text" placeholder="Your Name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div>
<input type="email" placeholder="Your Email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div>
<textarea placeholder="Your Message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="bg-blue-600 text-white px-6 py-2 rounded-lg font-medium hover:bg-blue-700 transition">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-10 h-10 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold text-xl">M</div>
<span class="text-xl font-bold">MALIBA-AI</span>
</div>
<p class="text-gray-400">
Empowering Mali through community-driven artificial intelligence solutions.
</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#about" class="text-gray-400 hover:text-white transition">About</a></li>
<li><a href="#philosophy" class="text-gray-400 hover:text-white transition">Philosophy</a></li>
<li><a href="#projects" class="text-gray-400 hover:text-white transition">Projects</a></li>
<li><a href="#community" class="text-gray-400 hover:text-white transition">Community</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Whitepapers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Research Papers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition text-xl">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition text-xl">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition text-xl">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition text-xl">
<i class="fab fa-discord"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400">
<p>© 2023 MALIBA-AI. All rights reserved.</p>
<p class="mt-2">Open-source initiative for Mali's technological future.</p>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-8 right-8 bg-blue-600 text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center opacity-0 invisible transition-all duration-300">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Back to top button
const backToTopButton = document.getElementById('back-to-top');
window.addEventListener('scroll', function() {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('opacity-0', 'invisible');
backToTopButton.classList.add('opacity-100', 'visible');
} else {
backToTopButton.classList.remove('opacity-100', 'visible');
backToTopButton.classList.add('opacity-0', 'invisible');
}
});
backToTopButton.addEventListener('click', function() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.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=sudoping01/maliba-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |