File size: 38,661 Bytes
d7c70e7 4111ac6 9364a8e 4111ac6 9364a8e 4111ac6 9364a8e 4111ac6 9364a8e 4111ac6 9364a8e 4111ac6 dc9b547 4111ac6 c20c70d 4111ac6 d7c70e7 4111ac6 c20c70d 4111ac6 c20c70d 4111ac6 d7c70e7 4111ac6 d7c70e7 4111ac6 d7c70e7 | 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 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CareerMap: Personal Career Guidance Platform</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#E63946',
secondary: '#457B9D',
accent: '#1D3557',
light: '#F1FAEE',
background: '#A8DADC',
dark: '#1D3557'
}
}
}
}
</script>
<style>
.progress-bar {
transition: width 0.5s ease-in-out;
}
.question-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.question-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);
}
.slider-thumb::-webkit-slider-thumb {
-webkit-appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background: #1D3557;
cursor: pointer;
}
.pathway-card {
perspective: 1000px;
}
.pathway-inner {
transition: transform 0.6s;
transform-style: preserve-3d;
}
.pathway-card:hover .pathway-inner {
transform: rotateY(10deg) rotateX(5deg);
}
.subject-table {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1.5rem;
}
@media (max-width: 768px) {
.subject-table {
grid-template-columns: 1fr;
}
}
.tab-button {
transition: all 0.3s ease;
}
.tab-button:hover {
background-image: linear-gradient(to right, #457B9D, #1D3557);
}
.tabs-container {
position: relative;
}
.active-tab-indicator {
position: absolute;
bottom: 0;
height: 4px;
background-color: #E63946;
transition: left 0.3s ease, width 0.3s ease;
}
.intelligence-icon {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
background: linear-gradient(135deg, #1D3557, #457B9D);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.career-card {
transition: all 0.3s ease;
}
.career-card:hover {
transform: scale(1.05);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.kenya-flag-theme {
background: linear-gradient(to bottom,
#000 33%,
#C1272D 33%, 66%,
#FFF 66%);
background-size: 100% 300%;
animation: flagAnimation 3s ease infinite alternate;
}
@keyframes flagAnimation {
0% { background-position: 0 0; }
100% { background-position: 0 100%; }
}
.page-transition {
animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body class="bg-light min-h-screen">
<!-- Header Section -->
<header class="bg-accent text-white shadow-xl">
<div class="container mx-auto px-4 py-5 flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-3">
<div class="bg-primary p-3 rounded-xl">
<i class="fas fa-map-marked-alt text-2xl"></i>
</div>
<h1 class="text-2xl md:text-3xl font-bold">CareerMap</h1>
</div>
<nav class="mt-4 md:mt-0">
<ul class="flex flex-wrap justify-center gap-2 md:gap-6">
<li><button onclick="showPage('home')" class="px-4 py-2 rounded-full bg-primary hover:bg-red-600 transition">Home</button></li>
<li><button onclick="startTest()" class="px-4 py-2 rounded-full hover:bg-secondary transition">Aptitude Test</button></li>
<li><button onclick="showPage('careers')" class="px-4 py-2 rounded-full hover:bg-secondary transition">Explore Careers</button></li>
<li><button onclick="showPage('subjects')" class="px-4 py-2 rounded-full hover:bg-secondary transition">Subject Combos</button></li>
</ul>
</nav>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8" id="content">
<!-- Home Page -->
<div id="home" class="page-transition">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-dark">Discover Your Career Pathway</h2>
<p class="text-lg text-gray-700 max-w-2xl mx-auto">Tailored guidance based on your unique strengths and Kenya's CBC curriculum. Find your ideal career path today.</p>
</div>
<!-- Hero Section -->
<div class="bg-gradient-to-r from-accent to-secondary rounded-2xl p-8 text-white mb-12">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h3 class="text-2xl md:text-3xl font-bold mb-4">Unlock Your Potential</h3>
<p class="mb-6">Our intelligent assessment analyzes your strengths across 9 intelligences to match you with ideal career pathways based on Kenya's CBC education system.</p>
<button onclick="startTest()" class="bg-primary hover:bg-red-600 px-6 py-3 rounded-full font-semibold transition">
Start Your Aptitude Test <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="bg-white rounded-full p-2">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-64 h-64 flex items-center justify-center text-gray-500">
<i class="fas fa-user-graduate text-5xl"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Key Benefits -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
<div class="bg-white rounded-xl shadow-lg p-6 flex flex-col items-center text-center">
<div class="bg-primary text-white p-4 rounded-full mb-4">
<i class="fas fa-brain text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Multiple Intelligences</h3>
<p>Discover your unique strengths across 9 intelligence types to understand how you learn and work best.</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 flex flex-col items-center text-center">
<div class="bg-secondary text-white p-4 rounded-full mb-4">
<i class="fas fa-graduation-cap text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">CBC Aligned</h3>
<p>Career pathways perfectly matched to Kenya's Competency-Based Curriculum framework.</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 flex flex-col items-center text-center">
<div class="bg-accent text-white p-4 rounded-full mb-4">
<i class="fas fa-road text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Clear Roadmap</h3>
<p>Get subject combination recommendations and career progression steps for your chosen path.</p>
</div>
</div>
<!-- Test Preview -->
<div class="mb-16">
<h3 class="text-2xl font-bold mb-6 text-dark">How the Aptitude Test Works</h3>
<div class="bg-white rounded-xl shadow-md p-6 max-w-2xl mx-auto">
<div class="flex items-center mb-4">
<div class="intelligence-icon text-white">
<i class="fas fa-music text-xl"></i>
</div>
<div class="ml-4">
<h4 class="font-bold text-lg">Musical Intelligence</h4>
<p class="text-gray-600">Sensitivity to rhythm, tone, and melody</p>
</div>
</div>
<div class="space-y-4">
<div>
<p class="mb-2">How sensitive are you to rhythm, tone, and melody?</p>
<div class="flex items-center space-x-2">
<span class="text-sm">Low</span>
<input type="range" min="0" max="10" value="7" class="w-full slider-thumb">
<span class="text-sm">High</span>
</div>
</div>
<div>
<p class="mb-2">Do you enjoy singing, playing an instrument, or composing music?</p>
<div class="flex flex-wrap gap-2 mt-2">
<button class="px-4 py-2 rounded-full bg-gray-200 text-sm">Not at all</button>
<button class="px-4 py-2 rounded-full bg-gray-200 text-sm">A little</button>
<button class="px-4 py-2 rounded-full bg-secondary text-white text-sm">Moderately</button>
<button class="px-4 py-2 rounded-full bg-gray-200 text-sm">A lot</button>
<button class="px-4 py-2 rounded-full bg-gray-200 text-sm">Very much</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Aptitude Test Page -->
<div id="test" class="hidden page-transition">
<!-- Test content will be rendered dynamically via JavaScript -->
</div>
<!-- Results Page -->
<div id="results" class="hidden page-transition">
<!-- Results content will be rendered dynamically via JavaScript -->
</div>
<!-- Careers Page -->
<div id="careers" class="hidden page-transition">
<h2 class="text-3xl font-bold mb-8 text-dark">Career Pathways Explorer</h2>
<div class="tabs-container mb-8">
<div class="flex flex-wrap gap-2 mb-6">
<button onclick="switchCareerTab('stem')" class="tab-button bg-secondary text-white px-6 py-2 rounded-t-lg">STEM Pathway</button>
<button onclick="switchCareerTab('social')" class="tab-button bg-primary text-white px-6 py-2 rounded-t-lg">Social Sciences</button>
<button onclick="switchCareerTab('arts')" class="tab-button bg-accent text-white px-6 py-2 rounded-t-lg">Arts & Sports</button>
</div>
<div id="active-tab-indicator" class="active-tab-indicator" style="width: 120px; left: 0px;"></div>
</div>
<div id="stem-careers">
<div class="bg-white rounded-xl shadow-md p-6 mb-8">
<div class="flex items-start">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16" style="min-width: 4rem;"></div>
<div class="ml-4">
<h3 class="text-2xl font-bold mb-2">Science, Technology, Engineering & Mathematics</h3>
<p class="text-gray-700 mb-4">This pathway is for students passionate about scientific inquiry, technological innovation, problem-solving, and mathematical reasoning.</p>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mt-8">
<div class="pathway-card">
<div class="pathway-inner bg-gray-50 rounded-xl p-5 border border-gray-200">
<h4 class="font-bold text-lg mb-3 flex items-center">
<span class="mr-2 text-secondary"><i class="fas fa-flask"></i></span>
Pure Sciences
</h4>
<ul class="space-y-2">
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Science Researcher</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Physicist</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Chemist</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Biologist</li>
</ul>
</div>
</div>
<div class="pathway-card">
<div class="pathway-inner bg-gray-50 rounded-xl p-5 border border-gray-200">
<h4 class="font-bold text-lg mb-3 flex items-center">
<span class="mr-2 text-secondary"><i class="fas fa-microchip"></i></span>
Career & Technology
</h4>
<ul class="space-y-2">
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Software Developer</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Data Scientist</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Cybersecurity Analyst</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Web Developer</li>
</ul>
</div>
</div>
<div class="pathway-card">
<div class="pathway-inner bg-gray-50 rounded-xl p-5 border border-gray-200">
<h4 class="font-bold text-lg mb-3 flex items-center">
<span class="mr-2 text-secondary"><i class="fas fa-tools"></i></span>
Engineering
</h4>
<ul class="space-y-2">
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Industrial Engineer</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Civil Engineer</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Electrical Engineer</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Mechanical Engineer</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="social-careers" class="hidden">
<div class="bg-white rounded-xl shadow-md p-6 mb-8">
<div class="flex items-start">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16" style="min-width: 4rem;"></div>
<div class="ml-4">
<h3 class="text-2xl font-bold mb-2">Social Sciences</h3>
<p class="text-gray-700 mb-4">For students interested in human behavior, societies, cultures, and governance. Cultivates analytical skills and understanding of social structures.</p>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mt-8">
<div class="pathway-card">
<div class="pathway-inner bg-gray-50 rounded-xl p-5 border border-gray-200">
<h4 class="font-bold text-lg mb-3 flex items-center">
<span class="mr-2 text-primary"><i class="fas fa-book"></i></span>
Humanities
</h4>
<ul class="space-y-2">
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Historian</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Philosopher</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Anthropologist</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Legal Researcher</li>
</ul>
</div>
</div>
<div class="pathway-card">
<div class="pathway-inner bg-gray-50 rounded-xl p-5 border border-gray-200">
<h4 class="font-bold text-lg mb-3 flex items-center">
<span class="mr-2 text-primary"><i class="fas fa-language"></i></span>
Languages
</h4>
<ul class="space-y-2">
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Translator</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Journalist</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Editor</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Language Teacher</li>
</ul>
</div>
</div>
<div class="pathway-card">
<div class="pathway-inner bg-gray-50 rounded-xl p-5 border border-gray-200">
<h4 class="font-bold text-lg mb-3 flex items-center">
<span class="mr-2 text-primary"><i class="fas fa-briefcase"></i></span>
Business Studies
</h4>
<ul class="space-y-2">
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Entrepreneur</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Financial Analyst</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Marketing Specialist</li>
<li class="flex items-center"><span class="mr-2 text-green-500"><i class="fas fa-check-circle"></i></span> Human Resources</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Subjects Page -->
<div id="subjects" class="hidden page-transition">
<h2 class="text-3xl font-bold mb-8 text-dark">Senior School Subject Combinations</h2>
<div class="bg-white rounded-xl shadow-md p-6 mb-8">
<p class="text-gray-700 mb-6">This section lists the various subject combinations available in Kenyan Senior Schools under the CBC, along with their corresponding pathways.</p>
<div class="subject-table">
<!-- Subject combinations will be loaded dynamically via JavaScript -->
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-accent text-white py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center mb-4">
<div class="bg-primary p-2 rounded-lg">
<i class="fas fa-map-marked-alt text-xl"></i>
</div>
<h3 class="text-xl font-bold ml-2">CareerMap</h3>
</div>
<p class="text-gray-300">Personalized career guidance aligned with Kenya's CBC curriculum</p>
</div>
<div>
<ul class="flex space-x-4">
<li><a href="#" class="text-gray-300 hover:text-white"><i class="fab fa-facebook text-xl"></i></a></li>
<li><a href="#" class="text-gray-300 hover:text-white"><i class="fab fa-twitter text-xl"></i></a></li>
<li><a href="#" class="text-gray-300 hover:text-white"><i class="fab fa-instagram text-xl"></i></a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-6 pt-6 text-center text-gray-400">
<p>© 2023 CareerMap. All rights reserved.</p>
</div>
</div>
</footer>
<script>
</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/cbc" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |