File size: 55,214 Bytes
f7d9e10 |
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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VR Academy | Learn VR Development in Virtual Reality</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=Orbitron:wght@400;700;900&family=Poppins:wght@300;400;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #0f0f1a;
color: #e0e0e0;
overflow-x: hidden;
}
.hero-gradient {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.vr-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}
.glow {
text-shadow: 0 0 10px rgba(100, 149, 237, 0.8);
}
.vr-headset {
position: relative;
}
.vr-headset::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at center, rgba(100, 149, 237, 0.2) 0%, transparent 70%);
z-index: -1;
}
.program-step {
position: relative;
padding-left: 2.5rem;
}
.program-step::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 1.5rem;
height: 1.5rem;
background-color: #4f46e5;
border-radius: 50%;
}
.program-step::after {
content: '';
position: absolute;
left: 0.75rem;
top: 1.5rem;
width: 2px;
height: calc(100% - 1.5rem);
background-color: #4f46e5;
}
.program-step:last-child::after {
display: none;
}
.investor-card {
transition: all 0.3s ease;
perspective: 1000px;
}
.investor-card:hover {
transform: scale(1.03);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: #4f46e5;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.form-input {
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.form-input:focus {
outline: none;
border-color: #4f46e5;
box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
}
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
.floating {
animation: float 6s ease-in-out infinite;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-black bg-opacity-80 backdrop-blur-md fixed w-full z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0">
<span class="text-2xl font-bold text-white font-orbitron">VR<span class="text-indigo-500">Academy</span></span>
</div>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-8">
<a href="#about" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">About</a>
<a href="#benefits" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Benefits</a>
<a href="#program" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Program</a>
<a href="#investors" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Investors</a>
<a href="#contact" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Contact</a>
</div>
</div>
<div class="hidden md:block">
<button class="bg-gradient-to-r from-indigo-500 to-purple-600 hover:from-indigo-600 hover:to-purple-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">
Enroll Now
</button>
</div>
<div class="-mr-2 flex md:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-gray-900">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">About</a>
<a href="#benefits" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Benefits</a>
<a href="#program" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Program</a>
<a href="#investors" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Investors</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Contact</a>
<button class="block w-full text-left px-3 py-2 rounded-md text-base font-medium text-white bg-gradient-to-r from-indigo-500 to-purple-600">Enroll Now</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient min-h-screen flex items-center pt-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6 font-orbitron glow">
Learn <span class="text-indigo-400">VR Development</span> in Virtual Reality
</h1>
<p class="text-xl text-gray-300 mb-8">
The world's first immersive education platform where you learn VR development by building in VR.
Join our revolutionary program in Meta Horizon and VRChat environments.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-gradient-to-r from-indigo-500 to-purple-600 hover:from-indigo-600 hover:to-purple-700 text-white px-8 py-3 rounded-md text-lg font-medium transition duration-300">
Start Learning
</button>
<button class="border border-indigo-400 text-indigo-400 hover:bg-indigo-900 hover:bg-opacity-20 px-8 py-3 rounded-md text-lg font-medium transition duration-300">
Watch Demo
</button>
</div>
<div class="mt-8 flex items-center">
<div class="flex -space-x-2">
<img class="w-10 h-10 rounded-full border-2 border-gray-800" src="https://randomuser.me/api/portraits/women/12.jpg" alt="">
<img class="w-10 h-10 rounded-full border-2 border-gray-800" src="https://randomuser.me/api/portraits/men/43.jpg" alt="">
<img class="w-10 h-10 rounded-full border-2 border-gray-800" src="https://randomuser.me/api/portraits/women/65.jpg" alt="">
</div>
<div class="ml-4">
<p class="text-gray-400">Join <span class="text-white font-medium">1,200+</span> students learning in VR</p>
</div>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="relative w-full h-96 md:h-auto">
<div class="absolute inset-0 bg-gradient-to-br from-indigo-500 to-purple-600 rounded-2xl opacity-20 blur-3xl"></div>
<div class="relative bg-gray-900 bg-opacity-50 border border-gray-700 rounded-2xl p-6 backdrop-blur-md">
<div class="flex justify-between items-center mb-4">
<div class="flex space-x-2">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<span class="text-sm text-gray-400">VR Development Console</span>
</div>
<div class="h-64 md:h-80 bg-gray-800 rounded-lg overflow-hidden relative vr-headset">
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-center">
<div class="floating mb-6">
<i class="fas fa-vr-cardboard text-6xl text-indigo-400"></i>
</div>
<p class="text-xl text-gray-300">Entering VR Learning Environment...</p>
</div>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<span class="text-sm text-gray-400">Connecting to Meta Horizon...</span>
<span class="text-sm text-indigo-400">v2.0.0</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4 font-orbitron">
The <span class="text-indigo-400">Future</span> of Education
</h2>
<p class="text-xl text-gray-400 max-w-3xl mx-auto">
We're redefining how people learn to create virtual reality experiences by teaching entirely within VR.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div class="order-2 lg:order-1">
<h3 class="text-2xl font-bold text-white mb-6">Learn by Doing in Virtual Reality</h3>
<p class="text-gray-300 mb-6">
Traditional online courses teach VR development through videos and text. We've created a revolutionary
approach where you learn VR development by actually building VR experiences inside VR environments like
Meta Horizon and VRChat.
</p>
<p class="text-gray-300 mb-6">
Our immersive learning platform provides real-time feedback, collaborative workspaces, and hands-on
projects that accelerate your learning curve. You'll gain practical skills faster than with any other
learning method.
</p>
<div class="flex space-x-4">
<div class="flex items-center">
<i class="fas fa-check-circle text-indigo-400 mr-2"></i>
<span class="text-gray-300">No prior experience needed</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-indigo-400 mr-2"></i>
<span class="text-gray-300">Learn at your own pace</span>
</div>
</div>
</div>
<div class="order-1 lg:order-2 relative">
<div class="absolute inset-0 bg-gradient-to-br from-indigo-500 to-purple-600 rounded-2xl opacity-20 blur-3xl"></div>
<div class="relative bg-gray-800 bg-opacity-50 border border-gray-700 rounded-2xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80"
alt="VR Learning Environment" class="w-full h-auto object-cover">
<div class="absolute inset-0 flex items-center justify-center">
<button class="bg-white bg-opacity-90 hover:bg-opacity-100 text-indigo-600 rounded-full w-16 h-16 flex items-center justify-center">
<i class="fas fa-play text-xl"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Benefits Section -->
<section id="benefits" class="py-20 bg-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4 font-orbitron">
Why Learn <span class="text-indigo-400">in VR</span>?
</h2>
<p class="text-xl text-gray-400 max-w-3xl mx-auto">
Our immersive learning approach offers unique advantages over traditional education methods.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Benefit 1 -->
<div class="vr-card bg-gray-900 rounded-xl p-8 transition duration-300">
<div class="w-16 h-16 bg-indigo-900 bg-opacity-50 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-hands-helping text-3xl text-indigo-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Hands-On Learning</h3>
<p class="text-gray-400">
Build VR experiences directly in VR with real-time feedback. No more abstract concepts - see your code come to life instantly.
</p>
</div>
<!-- Benefit 2 -->
<div class="vr-card bg-gray-900 rounded-xl p-8 transition duration-300">
<div class="w-16 h-16 bg-indigo-900 bg-opacity-50 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-users text-3xl text-indigo-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Collaborative Environment</h3>
<p class="text-gray-400">
Work alongside instructors and classmates in shared VR spaces. Get help, share ideas, and learn from others in real-time.
</p>
</div>
<!-- Benefit 3 -->
<div class="vr-card bg-gray-900 rounded-xl p-8 transition duration-300">
<div class="w-16 h-16 bg-indigo-900 bg-opacity-50 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-bolt text-3xl text-indigo-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Faster Skill Acquisition</h3>
<p class="text-gray-400">
Studies show immersive learning leads to 4x faster skill development compared to traditional methods.
</p>
</div>
<!-- Benefit 4 -->
<div class="vr-card bg-gray-900 rounded-xl p-8 transition duration-300">
<div class="w-16 h-16 bg-indigo-900 bg-opacity-50 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-project-diagram text-3xl text-indigo-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Portfolio Projects</h3>
<p class="text-gray-400">
Graduate with a portfolio of real VR projects built in professional environments, not just tutorial exercises.
</p>
</div>
<!-- Benefit 5 -->
<div class="vr-card bg-gray-900 rounded-xl p-8 transition duration-300">
<div class="w-16 h-16 bg-indigo-900 bg-opacity-50 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-user-tie text-3xl text-indigo-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Industry Connections</h3>
<p class="text-gray-400">
Network with VR professionals who visit our virtual campus for talks, workshops, and recruitment events.
</p>
</div>
<!-- Benefit 6 -->
<div class="vr-card bg-gray-900 rounded-xl p-8 transition duration-300">
<div class="w-16 h-16 bg-indigo-900 bg-opacity-50 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-graduation-cap text-3xl text-indigo-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Certification</h3>
<p class="text-gray-400">
Earn a recognized certification that demonstrates your VR development skills to employers.
</p>
</div>
</div>
</div>
</section>
<!-- Program Section -->
<section id="program" class="py-20 bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4 font-orbitron">
Learning <span class="text-indigo-400">Program</span>
</h2>
<p class="text-xl text-gray-400 max-w-3xl mx-auto">
Our comprehensive 12-week curriculum takes you from beginner to professional VR developer.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<div class="space-y-8">
<!-- Week 1-2 -->
<div class="program-step">
<h3 class="text-xl font-bold text-white mb-2">Weeks 1-2: VR Fundamentals</h3>
<p class="text-gray-400">
Introduction to VR development concepts, Unity basics, and navigating VR creation tools. Build your first simple VR environment.
</p>
</div>
<!-- Week 3-4 -->
<div class="program-step">
<h3 class="text-xl font-bold text-white mb-2">Weeks 3-4: Interactive Elements</h3>
<p class="text-gray-400">
Learn to create interactive objects, UI elements in VR, and basic physics. Develop a VR puzzle or mini-game.
</p>
</div>
<!-- Week 5-6 -->
<div class="program-step">
<h3 class="text-xl font-bold text-white mb-2">Weeks 5-6: Avatars & Social VR</h3>
<p class="text-gray-400">
Create and customize avatars, implement social features, and understand networking basics for multiplayer VR.
</p>
</div>
<!-- Week 7-8 -->
<div class="program-step">
<h3 class="text-xl font-bold text-white mb-2">Weeks 7-8: Advanced Interactions</h3>
<p class="text-gray-400">
Hand tracking, gesture recognition, and complex interactions. Build a VR tool or instrument.
</p>
</div>
<!-- Week 9-10 -->
<div class="program-step">
<h3 class="text-xl font-bold text-white mb-2">Weeks 9-10: Optimization & Performance</h3>
<p class="text-gray-400">
Learn techniques for optimizing VR experiences across different hardware. Implement performance monitoring.
</p>
</div>
<!-- Week 11-12 -->
<div class="program-step">
<h3 class="text-xl font-bold text-white mb-2">Weeks 11-12: Capstone Project</h3>
<p class="text-gray-400">
Design and develop your own complete VR application with guidance from instructors and peers.
</p>
</div>
</div>
<div class="mt-12 bg-gray-800 bg-opacity-50 rounded-xl p-6">
<h4 class="text-lg font-bold text-white mb-3">Program Details</h4>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="flex items-start">
<i class="fas fa-calendar-alt text-indigo-400 mt-1 mr-3"></i>
<div>
<p class="text-gray-400 font-medium">Duration</p>
<p class="text-white">12 weeks (part-time)</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-clock text-indigo-400 mt-1 mr-3"></i>
<div>
<p class="text-gray-400 font-medium">Time Commitment</p>
<p class="text-white">15-20 hours/week</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-user-graduate text-indigo-400 mt-1 mr-3"></i>
<div>
<p class="text-gray-400 font-medium">Format</p>
<p class="text-white">Live sessions + self-paced</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-vr-cardboard text-indigo-400 mt-1 mr-3"></i>
<div>
<p class="text-gray-400 font-medium">Requirements</p>
<p class="text-white">VR headset & capable PC</p>
</div>
</div>
</div>
</div>
</div>
<div class="relative">
<div class="absolute inset-0 bg-gradient-to-br from-indigo-500 to-purple-600 rounded-2xl opacity-20 blur-3xl"></div>
<div class="relative bg-gray-800 bg-opacity-50 border border-gray-700 rounded-2xl p-8 h-full">
<h3 class="text-2xl font-bold text-white mb-6">What You'll Build</h3>
<div class="space-y-6">
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-10 w-10 rounded-md bg-indigo-900 bg-opacity-50 text-indigo-400">
<i class="fas fa-check"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-white">Interactive VR Environments</h4>
<p class="text-gray-400">
Create immersive worlds with interactive elements and physics.
</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-10 w-10 rounded-md bg-indigo-900 bg-opacity-50 text-indigo-400">
<i class="fas fa-check"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-white">Social VR Experiences</h4>
<p class="text-gray-400">
Develop multiplayer spaces with avatar interactions.
</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-10 w-10 rounded-md bg-indigo-900 bg-opacity-50 text-indigo-400">
<i class="fas fa-check"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-white">VR Tools & Games</h4>
<p class="text-gray-400">
Build functional applications and entertaining experiences.
</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-10 w-10 rounded-md bg-indigo-900 bg-opacity-50 text-indigo-400">
<i class="fas fa-check"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-white">Performance Optimized Apps</h4>
<p class="text-gray-400">
Learn to create smooth experiences across devices.
</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-10 w-10 rounded-md bg-indigo-900 bg-opacity-50 text-indigo-400">
<i class="fas fa-check"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-white">Portfolio-Ready Project</h4>
<p class="text-gray-400">
Complete a showcase project demonstrating your skills.
</p>
</div>
</div>
</div>
<div class="mt-10 bg-gray-900 rounded-xl p-6">
<h4 class="text-lg font-bold text-white mb-3">Upcoming Cohorts</h4>
<div class="space-y-4">
<div class="flex justify-between items-center">
<div>
<p class="text-white">January 2024</p>
<p class="text-gray-400 text-sm">Early Bird Discount Available</p>
</div>
<button class="bg-gradient-to-r from-indigo-500 to-purple-600 hover:from-indigo-600 hover:to-purple-700 text-white px-4 py-2 rounded-md text-sm font-medium">
Apply Now
</button>
</div>
<div class="flex justify-between items-center">
<div>
<p class="text-white">March 2024</p>
<p class="text-gray-400 text-sm">Standard Enrollment</p>
</div>
<button class="bg-gradient-to-r from-indigo-500 to-purple-600 hover:from-indigo-600 hover:to-purple-700 text-white px-4 py-2 rounded-md text-sm font-medium">
Apply Now
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Investors Section -->
<section id="investors" class="py-20 bg-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4 font-orbitron">
For <span class="text-indigo-400">Investors</span>
</h2>
<p class="text-xl text-gray-400 max-w-3xl mx-auto">
Join us in shaping the future of education and the metaverse.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8 mb-12">
<div class="investor-card bg-gray-900 rounded-xl p-8">
<div class="w-16 h-16 bg-indigo-900 bg-opacity-50 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-chart-line text-3xl text-indigo-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Market Opportunity</h3>
<p class="text-gray-400 mb-4">
The VR education market is projected to reach $12.6 billion by 2028, growing at 42% CAGR.
Our first-mover advantage in VR-native education positions us for leadership in this space.
</p>
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="text-gray-400 text-sm">VR Education Market</span>
<span class="text-indigo-400 text-sm font-medium">$12.6B by 2028</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-indigo-500 h-2 rounded-full" style="width: 65%"></div>
</div>
</div>
</div>
<div class="investor-card bg-gray-900 rounded-xl p-8">
<div class="w-16 h-16 bg-indigo-900 bg-opacity-50 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-lightbulb text-3xl text-indigo-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Innovative Model</h3>
<p class="text-gray-400 mb-4">
Our learn-by-doing approach in VR has shown 3x better retention and 4x faster skill acquisition compared to traditional methods.
This creates a defensible moat around our educational offering.
</p>
<div class="grid grid-cols-2 gap-4">
<div class="bg-gray-800 rounded-lg p-3 text-center">
<p class="text-2xl font-bold text-indigo-400">3x</p>
<p class="text-gray-400 text-sm">Retention Rate</p>
</div>
<div class="bg-gray-800 rounded-lg p-3 text-center">
<p class="text-2xl font-bold text-indigo-400">4x</p>
<p class="text-gray-400 text-sm">Skill Acquisition</p>
</div>
</div>
</div>
<div class="investor-card bg-gray-900 rounded-xl p-8">
<div class="w-16 h-16 bg-indigo-900 bg-opacity-50 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-rocket text-3xl text-indigo-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Growth Potential</h3>
<p class="text-gray-400 mb-4">
With our scalable platform, we can expand beyond VR development into other technical fields,
corporate training, and eventually general education - a $7 trillion global market.
</p>
<div class="space-y-3">
<div class="flex items-center">
<div class="w-2 h-2 rounded-full bg-indigo-400 mr-2"></div>
<span class="text-gray-300 text-sm">Phase 1: VR Development (Current)</span>
</div>
<div class="flex items-center">
<div class="w-2 h-2 rounded-full bg-indigo-400 mr-2 opacity-50"></div>
<span class="text-gray-400 text-sm">Phase 2: Technical Fields (2024)</span>
</div>
<div class="flex items-center">
<div class="w-2 h-2 rounded-full bg-indigo-400 mr-2 opacity-25"></div>
<span class="text-gray-400 text-sm">Phase 3: General Education (2025+)</span>
</div>
</div>
</div>
</div>
<div class="bg-gray-900 bg-opacity-50 rounded-2xl p-8 backdrop-blur-md">
<h3 class="text-2xl font-bold text-white mb-6 text-center">Investment Highlights</h3>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-gray-800 rounded-xl p-6 text-center">
<div class="text-3xl font-bold text-indigo-400 mb-2">$1.2M</div>
<p class="text-gray-400">Seed Round Raised</p>
</div>
<div class="bg-gray-800 rounded-xl p-6 text-center">
<div class="text-3xl font-bold text-indigo-400 mb-2">1,200+</div>
<p class="text-gray-400">Students Enrolled</p>
</div>
<div class="bg-gray-800 rounded-xl p-6 text-center">
<div class="text-3xl font-bold text-indigo-400 mb-2">87%</div>
<p class="text-gray-400">Completion Rate</p>
</div>
<div class="bg-gray-800 rounded-xl p-6 text-center">
<div class="text-3xl font-bold text-indigo-400 mb-2">$5M</div>
<p class="text-gray-400">Series A Target</p>
</div>
</div>
<div class="mt-10 text-center">
<button class="border-2 border-indigo-400 text-indigo-400 hover:bg-indigo-900 hover:bg-opacity-20 px-8 py-3 rounded-md text-lg font-medium transition duration-300">
Download Investor Deck
</button>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4 font-orbitron">
Get in <span class="text-indigo-400">Touch</span>
</h2>
<p class="text-xl text-gray-400 max-w-3xl mx-auto">
Have questions about our program or investment opportunities? We'd love to hear from you.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<form class="space-y-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label for="first-name" class="block text-sm font-medium text-gray-300 mb-1">First Name</label>
<input type="text" id="first-name" class="form-input w-full px-4 py-3 rounded-md text-white">
</div>
<div>
<label for="last-name" class="block text-sm font-medium text-gray-300 mb-1">Last Name</label>
<input type="text" id="last-name" class="form-input w-full px-4 py-3 rounded-md text-white">
</div>
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-300 mb-1">Email</label>
<input type="email" id="email" class="form-input w-full px-4 py-3 rounded-md text-white">
</div>
<div>
<label for="subject" class="block text-sm font-medium text-gray-300 mb-1">Subject</label>
<select id="subject" class="form-input w-full px-4 py-3 rounded-md text-white">
<option value="">Select a topic</option>
<option value="admissions">Admissions Questions</option>
<option value="technical">Technical Requirements</option>
<option value="investors">Investment Inquiry</option>
<option value="partnerships">Partnership Opportunities</option>
<option value="other">Other</option>
</select>
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-300 mb-1">Message</label>
<textarea id="message" rows="5" class="form-input w-full px-4 py-3 rounded-md text-white"></textarea>
</div>
<div>
<button type="submit" class="bg-gradient-to-r from-indigo-500 to-purple-600 hover:from-indigo-600 hover:to-purple-700 text-white px-8 py-3 rounded-md text-lg font-medium w-full transition duration-300">
Send Message
</button>
</div>
</form>
</div>
<div class="relative">
<div class="absolute inset-0 bg-gradient-to-br from-indigo-500 to-purple-600 rounded-2xl opacity-20 blur-3xl"></div>
<div class="relative bg-gray-800 bg-opacity-50 border border-gray-700 rounded-2xl p-8 h-full">
<h3 class="text-2xl font-bold text-white mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-900 bg-opacity-50 text-indigo-400">
<i class="fas fa-map-marker-alt"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-white">Location</h4>
<p class="text-gray-400">
Virtual HQ in Meta Horizon<br>
Physical Office: San Francisco, CA
</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-900 bg-opacity-50 text-indigo-400">
<i class="fas fa-envelope"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-white">Email</h4>
<p class="text-gray-400">
hello@vracademy.io<br>
investors@vracademy.io
</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-900 bg-opacity-50 text-indigo-400">
<i class="fas fa-phone-alt"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-white">Phone</h4>
<p class="text-gray-400">
+1 (415) 555-0199<br>
Available 9AM-5PM PST
</p>
</div>
</div>
</div>
<div class="mt-10">
<h4 class="text-lg font-bold text-white mb-4">Visit Our Virtual Campus</h4>
<p class="text-gray-400 mb-4">
Experience our learning environment firsthand in Meta Horizon or VRChat.
</p>
<div class="flex space-x-4">
<button class="bg-gray-700 hover:bg-gray-600 text-white px-6 py-2 rounded-md text-sm font-medium flex items-center">
<i class="fab fa-meta mr-2"></i> Meta Horizon
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white px-6 py-2 rounded-md text-sm font-medium flex items-center">
<i class="fas fa-vr-cardboard mr-2"></i> VRChat
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-gradient-to-br from-indigo-900 to-purple-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-5xl font-bold mb-6 font-orbitron">
Ready to <span class="text-indigo-300">Build</span> the <span class="text-purple-300">Metaverse</span>?
</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto mb-10">
Join the next generation of VR developers and creators. Applications for our January cohort are now open.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-indigo-900 hover:bg-gray-100 px-8 py-4 rounded-md text-lg font-bold transition duration-300">
Apply Now
</button>
<button class="border-2 border-white text-white hover:bg-white hover:bg-opacity-10 px-8 py-4 rounded-md text-lg font-medium transition duration-300">
Schedule VR Tour
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black bg-opacity-90 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-2xl font-bold text-white font-orbitron mb-4">VR<span class="text-indigo-500">Academy</span></h3>
<p class="text-gray-400">
The future of education is immersive. We're training the next generation of VR developers and metaverse creators.
</p>
<div class="flex space-x-4 mt-6">
<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-discord"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div>
<h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Programs</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">VR Development</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Metaverse Design</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Unity for VR</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">VR Animation</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Corporate Training</a></li>
</ul>
</div>
<div>
<h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">Blog</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Tutorials</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Documentation</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Community</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">VR Hardware Guide</a></li>
</ul>
</div>
<div>
<h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Press</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Partners</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Contact</a></li>
</ul>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm">
© 2023 VR Academy. All rights reserved.
</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Accessibility</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');
});
// 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');
mobileMenu.classList.add('hidden');
}
});
});
// Form submission handling
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
// Get form values
const firstName = document.getElementById('first-name').value;
const lastName = document.getElementById('last-name').value;
const email = document.getElementById('email').value;
const subject = document.getElementById('subject').value;
const message = document.getElementById('message').value;
// Here you would typically send the form data to a server
// For this demo, we'll just show an alert
alert(`Thank you for your message, ${firstName}! We'll get back to you soon.`);
// Reset form
contactForm.reset();
});
}
// Animate elements when they come into view
const observerOptions = {
threshold: 0.1
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fadeIn');
}
});
}, observerOptions);
document.querySelectorAll('.vr-card, .program-step, .investor-card').forEach(card => {
observer.observe(card);
});
</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=kozlin/testspace" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |