|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>AiKo - Transformative Learning 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"> |
|
<style> |
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); |
|
|
|
body { |
|
font-family: 'Poppins', sans-serif; |
|
background-color: #f8fafc; |
|
scroll-behavior: smooth; |
|
} |
|
|
|
.gradient-bg { |
|
background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); |
|
} |
|
|
|
.card-hover:hover { |
|
transform: translateY(-5px); |
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
|
} |
|
|
|
.learning-path { |
|
position: relative; |
|
} |
|
|
|
.learning-path::before { |
|
content: ''; |
|
position: absolute; |
|
left: 0; |
|
top: 0; |
|
height: 100%; |
|
width: 4px; |
|
background: linear-gradient(to bottom, #4f46e5, #7c3aed); |
|
border-radius: 4px; |
|
} |
|
|
|
.progress-ring__circle { |
|
transition: stroke-dashoffset 0.35s; |
|
transform: rotate(-90deg); |
|
transform-origin: 50% 50%; |
|
} |
|
|
|
.video-container { |
|
position: relative; |
|
padding-bottom: 56.25%; |
|
height: 0; |
|
overflow: hidden; |
|
} |
|
|
|
.video-container iframe { |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
} |
|
|
|
.floating { |
|
animation: floating 3s ease-in-out infinite; |
|
} |
|
|
|
@keyframes floating { |
|
0% { transform: translateY(0px); } |
|
50% { transform: translateY(-15px); } |
|
100% { transform: translateY(0px); } |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<nav class="bg-white shadow-lg sticky top-0 z-50"> |
|
<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"> |
|
<span class="text-2xl font-bold text-indigo-600">Ai<span class="text-gray-800">Ko</span></span> |
|
</div> |
|
<div class="hidden md:ml-6 md:flex md:space-x-8"> |
|
<a href="#features" class="border-indigo-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Features</a> |
|
<a href="#how-it-works" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">How It Works</a> |
|
<a href="#pricing" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Pricing</a> |
|
<a href="#testimonials" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Testimonials</a> |
|
</div> |
|
</div> |
|
<div class="hidden md:ml-6 md:flex md:items-center"> |
|
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium">Get Started</button> |
|
</div> |
|
<div class="-mr-2 flex items-center 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-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500"> |
|
<span class="sr-only">Open main menu</span> |
|
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> |
|
</svg> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="mobile-menu" class="hidden md:hidden"> |
|
<div class="pt-2 pb-3 space-y-1"> |
|
<a href="#features" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Features</a> |
|
<a href="#how-it-works" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">How It Works</a> |
|
<a href="#pricing" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Pricing</a> |
|
<a href="#testimonials" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Testimonials</a> |
|
<div class="mt-4 pl-3 pr-4"> |
|
<button class="w-full bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium">Get Started</button> |
|
</div> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<div class="gradient-bg text-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32"> |
|
<div class="md:flex md:items-center md:justify-between"> |
|
<div class="md:w-1/2 mb-10 md:mb-0"> |
|
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Transform Learning with <span class="text-yellow-300">AiKo</span></h1> |
|
<p class="text-xl mb-8">Short, interactive learning stints powered by AI to help you learn faster and retain more.</p> |
|
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
|
<button class="bg-white text-indigo-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-semibold text-lg">Start Free Trial</button> |
|
<button class="border-2 border-white text-white hover:bg-white hover:text-indigo-600 px-6 py-3 rounded-lg font-semibold text-lg">Watch Demo</button> |
|
</div> |
|
</div> |
|
<div class="md:w-1/2 relative"> |
|
<div class="relative max-w-md mx-auto"> |
|
<div class="absolute -top-10 -left-10 w-32 h-32 bg-purple-300 rounded-full mix-blend-multiply filter blur-xl opacity-70"></div> |
|
<div class="absolute -bottom-10 -right-10 w-32 h-32 bg-yellow-300 rounded-full mix-blend-multiply filter blur-xl opacity-70"></div> |
|
<div class="relative bg-white rounded-xl shadow-2xl overflow-hidden"> |
|
<div class="video-container"> |
|
<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
|
</div> |
|
<div class="p-6"> |
|
<div class="flex items-center mb-4"> |
|
<div class="flex-shrink-0"> |
|
<img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
|
</div> |
|
<div class="ml-3"> |
|
<p class="text-sm font-medium text-gray-900">Sarah Johnson</p> |
|
<div class="flex space-x-1 text-sm text-gray-500"> |
|
<span>Completed</span> |
|
<span>•</span> |
|
<span>2 min ago</span> |
|
</div> |
|
</div> |
|
</div> |
|
<h3 class="text-lg font-medium text-gray-900">Introduction to Data Visualization</h3> |
|
<div class="mt-4 flex items-center justify-between"> |
|
<div class="flex space-x-1 text-sm text-gray-500"> |
|
<span>+25 XP</span> |
|
<span>•</span> |
|
<span>3/5 stars</span> |
|
</div> |
|
<button class="text-indigo-600 hover:text-indigo-900 text-sm font-medium">View Details</button> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white py-16"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:text-center"> |
|
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Trusted by learners worldwide</h2> |
|
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">Learning reimagined</p> |
|
</div> |
|
|
|
<div class="mt-10"> |
|
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-4"> |
|
<div class="bg-white p-6 rounded-xl shadow-md text-center card-hover transition duration-300"> |
|
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600"> |
|
<i class="fas fa-users text-xl"></i> |
|
</div> |
|
<div class="mt-5"> |
|
<h3 class="text-lg font-medium text-gray-900">500K+</h3> |
|
<p class="mt-2 text-base text-gray-500">Active Learners</p> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-white p-6 rounded-xl shadow-md text-center card-hover transition duration-300"> |
|
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600"> |
|
<i class="fas fa-graduation-cap text-xl"></i> |
|
</div> |
|
<div class="mt-5"> |
|
<h3 class="text-lg font-medium text-gray-900">10K+</h3> |
|
<p class="mt-2 text-base text-gray-500">Courses Completed</p> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-white p-6 rounded-xl shadow-md text-center card-hover transition duration-300"> |
|
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-yellow-100 text-yellow-600"> |
|
<i class="fas fa-clock text-xl"></i> |
|
</div> |
|
<div class="mt-5"> |
|
<h3 class="text-lg font-medium text-gray-900">40%</h3> |
|
<p class="mt-2 text-base text-gray-500">Reduced Training Time</p> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-white p-6 rounded-xl shadow-md text-center card-hover transition duration-300"> |
|
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-green-100 text-green-600"> |
|
<i class="fas fa-chart-line text-xl"></i> |
|
</div> |
|
<div class="mt-5"> |
|
<h3 class="text-lg font-medium text-gray-900">2.5x</h3> |
|
<p class="mt-2 text-base text-gray-500">Retention Rate</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="features" class="bg-gray-50 py-16"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:text-center"> |
|
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Features</h2> |
|
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">Why Choose AiKo?</p> |
|
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> |
|
Our platform empowers organizations to reduce training time while boosting engagement and retention. |
|
</p> |
|
</div> |
|
|
|
<div class="mt-20"> |
|
<div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10"> |
|
|
|
<div class="relative learning-path pl-8"> |
|
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition duration-300"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 bg-indigo-100 rounded-md p-3"> |
|
<i class="fas fa-brain text-indigo-600 text-xl"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg leading-6 font-medium text-gray-900">AI-Powered Learning Paths</h3> |
|
</div> |
|
</div> |
|
<p class="mt-4 text-base text-gray-500"> |
|
Intelligent pathways curated for optimal learning based on your progress, preferences, and performance. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative learning-path pl-8"> |
|
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition duration-300"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 bg-purple-100 rounded-md p-3"> |
|
<i class="fas fa-user-cog text-purple-600 text-xl"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg leading-6 font-medium text-gray-900">Personalized Content</h3> |
|
</div> |
|
</div> |
|
<p class="mt-4 text-base text-gray-500"> |
|
Tailored suggestions to enhance your progress with content that matches your skill level and learning style. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative learning-path pl-8"> |
|
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition duration-300"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 bg-yellow-100 rounded-md p-3"> |
|
<i class="fas fa-chart-bar text-yellow-600 text-xl"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg leading-6 font-medium text-gray-900">Real-Time Progress Tracking</h3> |
|
</div> |
|
</div> |
|
<p class="mt-4 text-base text-gray-500"> |
|
Monitor achievements and milestones in real time with detailed analytics and performance insights. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative learning-path pl-8"> |
|
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition duration-300"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 bg-green-100 rounded-md p-3"> |
|
<i class="fas fa-sliders-h text-green-600 text-xl"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg leading-6 font-medium text-gray-900">Adaptive Difficulty</h3> |
|
</div> |
|
</div> |
|
<p class="mt-4 text-base text-gray-500"> |
|
Seamlessly adjusts to match your pace and skill level, ensuring optimal challenge without frustration. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative learning-path pl-8"> |
|
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition duration-300"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 bg-red-100 rounded-md p-3"> |
|
<i class="fas fa-project-diagram text-red-600 text-xl"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg leading-6 font-medium text-gray-900">Interactive Visualization</h3> |
|
</div> |
|
</div> |
|
<p class="mt-4 text-base text-gray-500"> |
|
Explore data through dynamic charts and graphs that make complex information easy to understand. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative learning-path pl-8"> |
|
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition duration-300"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 bg-blue-100 rounded-md p-3"> |
|
<i class="fas fa-hands-helping text-blue-600 text-xl"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg leading-6 font-medium text-gray-900">Hands-On Practice</h3> |
|
</div> |
|
</div> |
|
<p class="mt-4 text-base text-gray-500"> |
|
Gain practical skills by working directly with data in realistic scenarios and case studies. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="how-it-works" class="bg-white py-16"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:text-center"> |
|
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Process</h2> |
|
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">How AiKo Works</p> |
|
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> |
|
Quick, snippet-like lessons are the foundation of AiKo's learning approach. |
|
</p> |
|
</div> |
|
|
|
<div class="mt-16"> |
|
<div class="lg:grid lg:grid-cols-3 lg:gap-8"> |
|
|
|
<div class="relative"> |
|
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> |
|
<span class="text-xl font-bold">1</span> |
|
</div> |
|
<div class="mt-5"> |
|
<h3 class="text-lg leading-6 font-medium text-gray-900">Select Your Learning Path</h3> |
|
<p class="mt-2 text-base text-gray-500"> |
|
Choose from our extensive library of topics or let our AI recommend the perfect path based on your goals. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative mt-10 lg:mt-0"> |
|
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> |
|
<span class="text-xl font-bold">2</span> |
|
</div> |
|
<div class="mt-5"> |
|
<h3 class="text-lg leading-6 font-medium text-gray-900">Engage with Micro-Lessons</h3> |
|
<p class="mt-2 text-base text-gray-500"> |
|
Learn through short, interactive sessions designed for maximum retention and minimal time commitment. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative mt-10 lg:mt-0"> |
|
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> |
|
<span class="text-xl font-bold">3</span> |
|
</div> |
|
<div class="mt-5"> |
|
<h3 class="text-lg leading-6 font-medium text-gray-900">Apply & Earn Rewards</h3> |
|
<p class="mt-2 text-base text-gray-500"> |
|
Complete practical exercises, earn XP and badges, and track your progress toward mastery. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-16"> |
|
<div class="bg-indigo-50 rounded-2xl p-8 md:p-12"> |
|
<div class="md:flex md:items-center"> |
|
<div class="md:w-1/2 mb-8 md:mb-0"> |
|
<h3 class="text-2xl font-bold text-gray-900 mb-4">Experience the ROLL8 Advantage</h3> |
|
<p class="text-gray-600 mb-6"> |
|
Our innovative ROLL8 tool generates eight tailored tasks at once, serving as both a supportive assistant and creativity booster. |
|
</p> |
|
<ul class="space-y-3"> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<div class="flex items-center justify-center h-5 w-5 rounded-full bg-indigo-500 text-white"> |
|
<svg class="h-3 w-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
</div> |
|
<p class="ml-3 text-sm text-gray-700">Enhances creative thinking and problem-solving</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<div class="flex items-center justify-center h-5 w-5 rounded-full bg-indigo-500 text-white"> |
|
<svg class="h-3 w-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
</div> |
|
<p class="ml-3 text-sm text-gray-700">Accelerates vocabulary and concept acquisition</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<div class="flex items-center justify-center h-5 w-5 rounded-full bg-indigo-500 text-white"> |
|
<svg class="h-3 w-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
</div> |
|
<p class="ml-3 text-sm text-gray-700">Provides structured yet flexible learning framework</p> |
|
</li> |
|
</ul> |
|
</div> |
|
<div class="md:w-1/2 md:pl-12"> |
|
<div class="bg-white rounded-xl shadow-lg overflow-hidden"> |
|
<div class="p-6"> |
|
<div class="flex justify-between items-center mb-6"> |
|
<h4 class="text-lg font-medium text-gray-900">Your ROLL8 Tasks</h4> |
|
<button id="roll-tasks" class="bg-indigo-100 text-indigo-700 px-3 py-1 rounded-md text-sm font-medium">Roll Again</button> |
|
</div> |
|
<div id="task-list" class="space-y-4"> |
|
|
|
</div> |
|
<div class="mt-6 pt-6 border-t border-gray-200"> |
|
<div class="flex justify-between"> |
|
<span class="text-sm font-medium text-gray-500">Completion</span> |
|
<span class="text-sm font-medium text-indigo-600">0/8</span> |
|
</div> |
|
<div class="mt-2 w-full bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 0%"></div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="pricing" class="bg-gray-50 py-16"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:text-center"> |
|
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Pricing</h2> |
|
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">Choose Your Plan</p> |
|
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> |
|
Whether you're an individual learner or an enterprise team, we have the perfect solution for you. |
|
</p> |
|
</div> |
|
|
|
<div class="mt-16 space-y-12 lg:space-y-0 lg:grid lg:grid-cols-2 lg:gap-x-8"> |
|
|
|
<div class="relative bg-white p-8 rounded-2xl shadow-lg border-2 border-gray-200 card-hover transition duration-300"> |
|
<div class="absolute top-0 right-0 -mt-4 -mr-4 bg-indigo-600 text-white text-xs font-bold uppercase tracking-wider px-3 py-1 rounded-full"> |
|
Most Popular |
|
</div> |
|
<h3 class="text-2xl font-bold text-gray-900">AiKo Pro</h3> |
|
<p class="mt-4 text-gray-500">For individuals and small teams</p> |
|
<div class="mt-6"> |
|
<span class="text-4xl font-extrabold text-gray-900">$29</span> |
|
<span class="text-base font-medium text-gray-500">/month</span> |
|
</div> |
|
<ul class="mt-8 space-y-4"> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">Unlimited micro-lessons</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">Personalized AI tutor</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">Advanced progress tracking</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">ROLL8 task generator</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">Certificate of completion</p> |
|
</li> |
|
</ul> |
|
<div class="mt-8"> |
|
<button class="w-full bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-md font-medium">Get Started</button> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="relative bg-white p-8 rounded-2xl shadow-lg border-2 border-purple-200 card-hover transition duration-300"> |
|
<h3 class="text-2xl font-bold text-gray-900">AiKo Enterprise</h3> |
|
<p class="mt-4 text-gray-500">For organizations and large teams</p> |
|
<div class="mt-6"> |
|
<span class="text-4xl font-extrabold text-gray-900">Custom</span> |
|
</div> |
|
<ul class="mt-8 space-y-4"> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">Everything in Pro, plus:</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">Unlimited team members</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">Admin dashboard & analytics</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">Custom content creation</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">Priority support</p> |
|
</li> |
|
<li class="flex items-start"> |
|
<div class="flex-shrink-0"> |
|
<svg class="h-5 w-5 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
|
</svg> |
|
</div> |
|
<p class="ml-3 text-base text-gray-700">API access & integrations</p> |
|
</li> |
|
</ul> |
|
<div class="mt-8"> |
|
<button class="w-full bg-purple-600 hover:bg-purple-700 text-white px-6 py-3 rounded-md font-medium">Contact Sales</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-16 bg-white rounded-2xl shadow-lg overflow-hidden"> |
|
<div class="px-6 py-8 sm:p-10 sm:pb-6"> |
|
<div class="text-center"> |
|
<h3 class="text-2xl font-bold text-gray-900">Compare Features</h3> |
|
</div> |
|
<div class="mt-8"> |
|
<div class="overflow-x-auto"> |
|
<table class="min-w-full divide-y divide-gray-200"> |
|
<thead class="bg-gray-50"> |
|
<tr> |
|
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Feature</th> |
|
<th scope="col" class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">Free</th> |
|
<th scope="col" class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">Pro</th> |
|
<th scope="col" class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">Enterprise</th> |
|
</tr> |
|
</thead> |
|
<tbody class="bg-white divide-y divide-gray-200"> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Micro-lessons</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">Limited</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">Unlimited</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">Unlimited</td> |
|
</tr> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">AI Tutor</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">Basic</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">Advanced</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">Premium</td> |
|
</tr> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Progress Tracking</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">Basic</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">Advanced</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">Enterprise</td> |
|
</tr> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">ROLL8 Generator</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">-</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">✓</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">✓</td> |
|
</tr> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Team Management</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">-</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">-</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">✓</td> |
|
</tr> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Custom Content</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">-</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">-</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">✓</td> |
|
</tr> |
|
<tr> |
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">API Access</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">-</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">-</td> |
|
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">✓</td> |
|
</tr> |
|
</tbody> |
|
</table> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="testimonials" class="bg-white py-16"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:text-center"> |
|
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Testimonials</h2> |
|
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">What Our Learners Say</p> |
|
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> |
|
Don't just take our word for it - hear from our community of learners. |
|
</p> |
|
</div> |
|
|
|
<div class="mt-16"> |
|
<div class="space-y-16 lg:space-y-0 lg:grid lg:grid-cols-3 lg:gap-x-8 lg:gap-y-16"> |
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md card-hover transition duration-300"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0"> |
|
<img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
|
</div> |
|
<div class="ml-4"> |
|
<div class="text-lg font-medium text-gray-900">Sarah Johnson</div> |
|
<div class="text-indigo-600">Data Analyst, TechCorp</div> |
|
</div> |
|
</div> |
|
<div class="mt-6"> |
|
<p class="text-gray-600 italic"> |
|
"AiKo transformed how I learn new concepts. The micro-lessons fit perfectly into my busy schedule, and the AI tutor adapts to my learning style. I've reduced my training time by 50% while improving retention." |
|
</p> |
|
</div> |
|
<div class="mt-6 flex items-center"> |
|
<div class="flex"> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
</div> |
|
<div class="ml-3 text-sm text-gray-500">5.0 rating</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md card-hover transition duration-300"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0"> |
|
<img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
|
</div> |
|
<div class="ml-4"> |
|
<div class="text-lg font-medium text-gray-900">Michael Chen</div> |
|
<div class="text-indigo-600">CTO, StartupX</div> |
|
</div> |
|
</div> |
|
<div class="mt-6"> |
|
<p class="text-gray-600 italic"> |
|
"The ROLL8 feature has been a game-changer for our team. We generate daily learning tasks that keep everyone engaged and continuously improving. Our onboarding process is now 40% faster." |
|
</p> |
|
</div> |
|
<div class="mt-6 flex items-center"> |
|
<div class="flex"> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
</div> |
|
<div class="ml-3 text-sm text-gray-500">5.0 rating</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md card-hover transition duration-300"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0"> |
|
<img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1566492031773-4f4e44671857?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
|
</div> |
|
<div class="ml-4"> |
|
<div class="text-lg font-medium text-gray-900">David Rodriguez</div> |
|
<div class="text-indigo-600">Learning & Development, EnterpriseCo</div> |
|
</div> |
|
</div> |
|
<div class="mt-6"> |
|
<p class="text-gray-600 italic"> |
|
"AiKo Enterprise has revolutionized our corporate training. The ability to create custom content and track team progress has saved us thousands in training costs while improving outcomes." |
|
</p> |
|
</div> |
|
<div class="mt-6 flex items-center"> |
|
<div class="flex"> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
|
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" /> |
|
</svg> |
|
</div> |
|
<div class="ml-3 text-sm text-gray-500">5.0 rating</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="gradient-bg text-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16 md:py-24"> |
|
<div class="md:flex md:items-center md:justify-between"> |
|
<div class="md:w-1/2 mb-10 md:mb-0"> |
|
<h2 class="text-3xl font-bold mb-6">Ready to transform your learning experience?</h2> |
|
<p class="text-xl mb-8">Join thousands of learners who are mastering new skills with AiKo's innovative platform.</p> |
|
</div> |
|
<div class="md:w-1/2 md:pl-12"> |
|
<div class="bg-white rounded-xl shadow-lg overflow-hidden"> |
|
<div class="p-8"> |
|
<h3 class="text-2xl font-bold text-gray-900 mb-6">Start Your Free Trial</h3> |
|
<form> |
|
<div class="mb-4"> |
|
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label> |
|
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500"> |
|
</div> |
|
<div class="mb-4"> |
|
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label> |
|
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500"> |
|
</div> |
|
<div class="mb-6"> |
|
<label for="plan" class="block text-sm font-medium text-gray-700 mb-1">Select Plan</label> |
|
<select id="plan" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500"> |
|
<option>AiKo Free</option> |
|
<option>AiKo Pro</option> |
|
<option>AiKo Enterprise</option> |
|
</select> |
|
</div> |
|
<button type="submit" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-md font-medium">Start 14-Day Free Trial</button> |
|
<p class="mt-4 text-center text-sm text-gray-500">No credit card required</p> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<footer class="bg-gray-800 text-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> |
|
<div class="grid grid-cols-2 md:grid-cols-4 gap-8"> |
|
<div> |
|
<h3 class="text-lg font-semibold mb-4">Product</h3> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Features</a></li> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Pricing</a></li> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Enterprise</a></li> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Integrations</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h3 class="text-lg font-semibold mb-4">Resources</h3> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Documentation</a></li> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Guides</a></li> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Blog</a></li> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Community</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h3 class="text-lg font-semibold mb-4">Company</h3> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-300 hover:text-white">About</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">Contact</a></li> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Press</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h3 class="text-lg font-semibold mb-4">Legal</h3> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Privacy</a></li> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Terms</a></li> |
|
<li><a href="#" class="text-gray-300 hover:text-white">Cookie Policy</a></li> |
|
<li><a href="#" class="text-gray-300 hover:text-white">GDPR</a></li> |
|
</ul> |
|
</div> |
|
</div> |
|
<div class="mt-12 pt- |
|
</html> |