Spaces:
Running
Running
File size: 33,889 Bytes
c00e030 |
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 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 |
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KI-Akademie | Zukunft des Lernens</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=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
.gradient-bg {
background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
}
.course-card: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);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: #4f46e5;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-sm fixed w-full z-10">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-robot text-indigo-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">KI-Akademie</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#home" class="nav-link text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Startseite</a>
<a href="#courses" class="nav-link text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Kurse</a>
<a href="#features" class="nav-link text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Vorteile</a>
<a href="#testimonials" class="nav-link text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Erfahrungen</a>
<a href="#contact" class="nav-link text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Kontakt</a>
</div>
<div class="flex items-center md:hidden">
<button id="mobile-menu-button" class="text-gray-500 hover:text-gray-900 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-indigo-600">Startseite</a>
<a href="#courses" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-indigo-600">Kurse</a>
<a href="#features" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-indigo-600">Vorteile</a>
<a href="#testimonials" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-indigo-600">Erfahrungen</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-indigo-600">Kontakt</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-24 pb-12 md:pt-32 md:pb-20 gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Die Zukunft des Lernens beginnt hier</h1>
<p class="text-xl mb-8 opacity-90">Entdecken Sie unsere KI-gestützten Bildungsprogramme und bereiten Sie sich auf die Jobs der Zukunft vor.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#courses" class="bg-white text-indigo-600 hover:bg-gray-100 font-semibold py-3 px-6 rounded-lg text-center transition duration-300">Kurse entdecken</a>
<a href="#contact" class="border-2 border-white text-white hover:bg-white hover:text-indigo-600 font-semibold py-3 px-6 rounded-lg text-center transition duration-300">Kostenlose Beratung</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1581094794329-c811329d4812?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="KI-Lernen" class="rounded-xl shadow-2xl animate-float max-w-full h-auto">
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-12 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div class="bg-gray-50 p-6 rounded-xl shadow-sm">
<div class="text-indigo-600 text-4xl font-bold mb-2">10.000+</div>
<div class="text-gray-600">Zufriedene Lernende</div>
</div>
<div class="bg-gray-50 p-6 rounded-xl shadow-sm">
<div class="text-indigo-600 text-4xl font-bold mb-2">98%</div>
<div class="text-gray-600">Erfolgsquote</div>
</div>
<div class="bg-gray-50 p-6 rounded-xl shadow-sm">
<div class="text-indigo-600 text-4xl font-bold mb-2">50+</div>
<div class="text-gray-600">Zertifizierte Kurse</div>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section id="courses" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Unsere KI-Kurse</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Entdecken Sie unsere maßgeschneiderten Lernprogramme, die von KI unterstützt werden</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Course 1 -->
<div class="course-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-indigo-100 flex items-center justify-center">
<i class="fas fa-brain text-indigo-600 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">KI-Grundlagen</h3>
<p class="text-gray-600 mb-4">Lernen Sie die Grundlagen der künstlichen Intelligenz und ihre Anwendungen kennen.</p>
<div class="flex justify-between items-center">
<span class="text-indigo-600 font-semibold">€299</span>
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Mehr erfahren →</a>
</div>
</div>
</div>
<!-- Course 2 -->
<div class="course-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-purple-100 flex items-center justify-center">
<i class="fas fa-chart-line text-purple-600 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">Maschinelles Lernen</h3>
<p class="text-gray-600 mb-4">Master-Algorithmen und Modelle für prädiktive Analysen und Mustererkennung.</p>
<div class="flex justify-between items-center">
<span class="text-indigo-600 font-semibold">€499</span>
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Mehr erfahren →</a>
</div>
</div>
</div>
<!-- Course 3 -->
<div class="course-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-language text-blue-600 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">NLP Spezialist</h3>
<p class="text-gray-600 mb-4">Verarbeitung natürlicher Sprache für Chatbots, Übersetzung und Textanalyse.</p>
<div class="flex justify-between items-center">
<span class="text-indigo-600 font-semibold">€399</span>
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Mehr erfahren →</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block bg-indigo-600 hover:bg-indigo-700 text-white font-semibold py-3 px-8 rounded-lg transition duration-300">Alle Kurse anzeigen</a>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Warum KI-Akademie?</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Unsere einzigartigen Vorteile für Ihren Lernerfolg</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="text-indigo-600 mb-4">
<i class="fas fa-user-robot text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">KI-Lernassistent</h3>
<p class="text-gray-600">Persönlicher KI-Tutor, der sich an Ihren Lernstil anpasst und Ihnen hilft, schneller zu lernen.</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="text-indigo-600 mb-4">
<i class="fas fa-graduation-cap text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Zertifizierungen</h3>
<p class="text-gray-600">Anerkannte Zertifikate, die Ihnen neue Karrieremöglichkeiten eröffnen.</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="text-indigo-600 mb-4">
<i class="fas fa-briefcase text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Karriereunterstützung</h3>
<p class="text-gray-600">Zugang zu unserem exklusiven Job-Netzwerk und Karriereberatung.</p>
</div>
<!-- Feature 4 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="text-indigo-600 mb-4">
<i class="fas fa-laptop-code text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Praktische Projekte</h3>
<p class="text-gray-600">Reale Anwendungsfälle und Projekte, die Ihnen praktische Erfahrungen vermitteln.</p>
</div>
<!-- Feature 5 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="text-indigo-600 mb-4">
<i class="fas fa-users text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Community</h3>
<p class="text-gray-600">Zugang zu einer aktiven Community von Lernenden und Experten.</p>
</div>
<!-- Feature 6 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="text-indigo-600 mb-4">
<i class="fas fa-clock text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Flexibles Lernen</h3>
<p class="text-gray-600">Lernen Sie in Ihrem eigenen Tempo, wann und wo Sie wollen.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-16 bg-indigo-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Was unsere Lernenden sagen</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Erfolgsgeschichten aus unserer Community</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center mr-4">
<i class="fas fa-user text-indigo-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900">Anna Müller</h4>
<p class="text-gray-600 text-sm">Data Scientist</p>
</div>
</div>
<p class="text-gray-600">"Der KI-Grundlagenkurs hat mir geholfen, meine Karriere in der Tech-Branche zu starten. Der KI-Tutor war unglaublich hilfreich!"</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center mr-4">
<i class="fas fa-user text-indigo-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900">Thomas Schmidt</h4>
<p class="text-gray-600 text-sm">ML Engineer</p>
</div>
</div>
<p class="text-gray-600">"Die praktischen Projekte im Maschinellen Lernen Kurs gaben mir das Selbstvertrauen, mich auf Senior-Positionen zu bewerben."</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center mr-4">
<i class="fas fa-user text-indigo-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900">Lisa Wagner</h4>
<p class="text-gray-600 text-sm">NLP Specialist</p>
</div>
</div>
<p class="text-gray-600">"Dank des NLP-Kurses konnte ich innerhalb von 6 Monaten in ein völlig neues Berufsfeld wechseln. Die Community war dabei eine große Hilfe."</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Bereit für die Zukunft des Lernens?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">Starten Sie noch heute mit Ihrer KI-Ausbildung und sichern Sie sich Ihren Platz in der digitalen Zukunft.</p>
<a href="#contact" class="inline-block bg-white text-indigo-600 hover:bg-gray-100 font-semibold py-3 px-8 rounded-lg transition duration-300">Jetzt anmelden</a>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Kontaktieren Sie uns</h2>
<p class="text-gray-600 mb-6">Haben Sie Fragen zu unseren Kursen oder benötigen Sie eine persönliche Beratung? Unser Team steht Ihnen gerne zur Verfügung.</p>
<div class="space-y-4">
<div class="flex items-center">
<i class="fas fa-envelope text-indigo-600 mr-4"></i>
<span class="text-gray-600">info@ki-akademie.de</span>
</div>
<div class="flex items-center">
<i class="fas fa-phone text-indigo-600 mr-4"></i>
<span class="text-gray-600">+49 30 1234567</span>
</div>
<div class="flex items-center">
<i class="fas fa-map-marker-alt text-indigo-600 mr-4"></i>
<span class="text-gray-600">Musterstraße 123, 10115 Berlin</span>
</div>
</div>
<div class="mt-8">
<h3 class="text-xl font-bold text-gray-900 mb-4">Folgen Sie uns</h3>
<div class="flex space-x-4">
<a href="#" class="text-indigo-600 hover:text-indigo-800"><i class="fab fa-facebook-f text-2xl"></i></a>
<a href="#" class="text-indigo-600 hover:text-indigo-800"><i class="fab fa-twitter text-2xl"></i></a>
<a href="#" class="text-indigo-600 hover:text-indigo-800"><i class="fab fa-linkedin-in text-2xl"></i></a>
<a href="#" class="text-indigo-600 hover:text-indigo-800"><i class="fab fa-instagram text-2xl"></i></a>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="bg-gray-50 p-8 rounded-xl shadow-sm">
<div class="mb-4">
<label for="name" class="block text-gray-700 font-medium mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 font-medium mb-2">E-Mail</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 font-medium mb-2">Betreff</label>
<select id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
<option value="">Bitte wählen</option>
<option value="course">Kursinformation</option>
<option value="consultation">Beratung</option>
<option value="technical">Technische Frage</option>
<option value="other">Sonstiges</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Nachricht</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500"></textarea>
</div>
<button type="submit" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-semibold py-3 px-4 rounded-lg transition duration-300">Nachricht senden</button>
</form>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Häufig gestellte Fragen</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Finden Sie Antworten auf die am häufigsten gestellten Fragen</p>
</div>
<div class="max-w-3xl mx-auto">
<div class="space-y-4">
<!-- FAQ 1 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="faq-toggle w-full flex justify-between items-center text-left">
<h3 class="font-bold text-gray-900">Wie unterscheidet sich KI-Akademie von anderen Online-Lernplattformen?</h3>
<i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
</button>
<div class="faq-content mt-3 text-gray-600 hidden">
<p>Unsere Plattform nutzt fortschrittliche KI-Technologie, um personalisierte Lernpfade zu erstellen, die sich an Ihren Fortschritt und Lernstil anpassen. Im Gegensatz zu statischen Online-Kursen bietet unsere KI kontinuierliche Unterstützung und Feedback, ähnlich wie ein persönlicher Tutor.</p>
</div>
</div>
<!-- FAQ 2 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="faq-toggle w-full flex justify-between items-center text-left">
<h3 class="font-bold text-gray-900">Sind die Zertifikate anerkannt?</h3>
<i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
</button>
<div class="faq-content mt-3 text-gray-600 hidden">
<p>Ja, unsere Zertifikate werden von zahlreichen Unternehmen in der Tech-Branche anerkannt. Viele unserer Partnerunternehmen akzeptieren unsere Abschlüsse als Qualifikationsnachweis. Zusätzlich arbeiten wir kontinuierlich daran, unsere Zertifizierungen weiter zu standardisieren und anzuerkennen.</p>
</div>
</div>
<!-- FAQ 3 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="faq-toggle w-full flex justify-between items-center text-left">
<h3 class="font-bold text-gray-900">Wie viel Zeit sollte ich für einen Kurs einplanen?</h3>
<i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
</button>
<div class="faq-content mt-3 text-gray-600 hidden">
<p>Die meisten unserer Kurse sind für 8-12 Wochen bei einem Aufwand von etwa 5-10 Stunden pro Woche konzipiert. Da unsere Plattform jedoch selbstgesteuertes Lernen ermöglicht, können Sie Ihr Tempo selbst bestimmen und die Kurse auch in kürzerer oder längerer Zeit absolvieren.</p>
</div>
</div>
<!-- FAQ 4 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="faq-toggle w-full flex justify-between items-center text-left">
<h3 class="font-bold text-gray-900">Gibt es Voraussetzungen für die Kurse?</h3>
<i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
</button>
<div class="faq-content mt-3 text-gray-600 hidden">
<p>Unsere Einführungskurse erfordern keine Vorkenntnisse. Für fortgeschrittene Kurse empfehlen wir Grundkenntnisse in Mathematik und Programmierung. Jeder Kurs zeigt deutlich die erforderlichen Vorkenntnisse an, und unser KI-System kann Ihnen auch dabei helfen, etwaige Wissenslücken zu identifizieren und zu schließen.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-robot text-indigo-400 mr-2"></i>
KI-Akademie
</h3>
<p class="text-gray-400">Die führende Plattform für KI-gestütztes Lernen im deutschsprachigen Raum.</p>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Kurse</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">KI-Grundlagen</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Maschinelles Lernen</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Deep Learning</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">NLP</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Computer Vision</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Unternehmen</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Über uns</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Karriere</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Partner</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Presse</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Rechtliches</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">AGB</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Datenschutz</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Impressum</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Cookie-Richtlinie</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 KI-Akademie. Alle Rechte vorbehalten.</p>
<div class="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-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// FAQ toggle functionality
document.querySelectorAll('.faq-toggle').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
content.classList.toggle('hidden');
icon.classList.toggle('rotate-180');
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Form submission
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
// Here you would normally send the form data to a server
alert('Vielen Dank für Ihre Nachricht! Wir werden uns bald bei Ihnen melden.');
this.reset();
});
}
</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=MyFirstAccount/mywebsite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |