pdf-genius / index.html
misbahsy's picture
Add 2 files
582f1a0 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PDF Genius | Transform PDFs into Powerful Learning Tools</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: '#4F46E5',
secondary: '#10B981',
dark: '#1F2937',
light: '#F9FAFB'
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.hero-gradient {
background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
}
.feature-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);
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltip-text {
visibility: hidden;
width: 200px;
background-color: #1F2937;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 8px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
.input-file {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
.input-file + label {
cursor: pointer;
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-light">
<!-- Navigation -->
<nav class="bg-white shadow-sm py-4">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-brain text-primary text-3xl mr-2"></i>
<span class="text-xl font-bold text-dark">PDF Genius</span>
</div>
</div>
<div class="hidden md:flex space-x-8">
<a href="#features" class="text-dark hover:text-primary font-medium">Features</a>
<a href="#how-it-works" class="text-dark hover:text-primary font-medium">How It Works</a>
<a href="#pricing" class="text-dark hover:text-primary font-medium">Pricing</a>
<a href="#testimonials" class="text-dark hover:text-primary font-medium">Testimonials</a>
</div>
<div class="flex items-center">
<a href="#" class="text-dark hover:text-primary font-medium mr-4">Login</a>
<a href="#pricing" class="bg-primary hover:bg-primary-dark text-white px-4 py-2 rounded-md font-medium transition duration-300">Get Started</a>
</div>
<div class="md:hidden">
<button class="text-dark focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient text-white py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<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-5xl font-bold leading-tight mb-6">Transform Your PDFs into Powerful Learning Tools</h1>
<p class="text-xl mb-8 opacity-90">Automatically convert boring PDFs into engaging explainer videos, interactive presentations, study notes, flashcards, and more with AI-powered technology.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#pricing" class="bg-white text-primary hover:bg-gray-100 px-6 py-3 rounded-md font-bold text-center transition duration-300">Start Free Trial</a>
<a href="#demo" class="border-2 border-white hover:bg-white hover:bg-opacity-10 px-6 py-3 rounded-md font-bold text-center transition duration-300">Watch Demo</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-full max-w-md">
<div class="bg-white rounded-xl shadow-2xl p-6 relative floating">
<div class="flex items-center mb-4">
<div class="h-3 w-3 rounded-full bg-red-500 mr-2"></div>
<div class="h-3 w-3 rounded-full bg-yellow-500 mr-2"></div>
<div class="h-3 w-3 rounded-full bg-green-500"></div>
</div>
<div class="bg-gray-100 rounded-lg p-4 mb-4">
<p class="text-dark text-sm">Uploading: Advanced_Physics_Textbook.pdf</p>
</div>
<div class="grid grid-cols-2 gap-4 mb-4">
<div class="bg-secondary bg-opacity-10 rounded-lg p-3 text-center">
<i class="fas fa-video text-secondary text-2xl mb-2"></i>
<p class="text-dark font-medium">Explainer Video</p>
</div>
<div class="bg-primary bg-opacity-10 rounded-lg p-3 text-center">
<i class="fas fa-file-powerpoint text-primary text-2xl mb-2"></i>
<p class="text-dark font-medium">Presentation</p>
</div>
<div class="bg-purple-500 bg-opacity-10 rounded-lg p-3 text-center">
<i class="fas fa-sticky-note text-purple-500 text-2xl mb-2"></i>
<p class="text-dark font-medium">Study Notes</p>
</div>
<div class="bg-yellow-500 bg-opacity-10 rounded-lg p-3 text-center">
<i class="fas fa-layer-group text-yellow-500 text-2xl mb-2"></i>
<p class="text-dark font-medium">Flashcards</p>
</div>
</div>
<div class="bg-primary text-white rounded-lg py-3 px-4 text-center font-bold">
<p>Generate Learning Materials</p>
</div>
</div>
<div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-lg hidden md:block">
<div class="flex items-center">
<div class="bg-green-100 p-2 rounded-full mr-3">
<i class="fas fa-check text-green-500"></i>
</div>
<div>
<p class="text-dark font-bold">3,245+</p>
<p class="text-gray-500 text-sm">PDFs processed today</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trusted By Section -->
<section class="py-12 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p class="text-center text-gray-500 mb-8">Trusted by educators and learners at</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<img src="https://via.placeholder.com/120x40?text=Harvard" alt="Harvard" class="h-8 opacity-60 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/120x40?text=Stanford" alt="Stanford" class="h-8 opacity-60 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/120x40?text=MIT" alt="MIT" class="h-8 opacity-60 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/120x40?text=Coursera" alt="Coursera" class="h-8 opacity-60 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/120x40?text=Udemy" alt="Udemy" class="h-8 opacity-60 hover:opacity-100 transition duration-300">
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-gray-50">
<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 font-bold text-dark mb-4">Powerful Features to Enhance Learning</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Transform any PDF into multiple learning formats with just a few clicks</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white rounded-xl p-8 shadow-md feature-card transition duration-300">
<div class="bg-primary bg-opacity-10 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-video text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">Explainer Videos</h3>
<p class="text-gray-600 mb-4">Convert dense PDF content into engaging, animated explainer videos with voiceovers and visuals.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">AI Narration</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Visual Animations</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Custom Branding</span>
</div>
</div>
<!-- Feature 2 -->
<div class="bg-white rounded-xl p-8 shadow-md feature-card transition duration-300">
<div class="bg-secondary bg-opacity-10 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-file-powerpoint text-secondary text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">Interactive Presentations</h3>
<p class="text-gray-600 mb-4">Automatically generate slide decks with key points, diagrams, and quizzes from your PDFs.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">PowerPoint</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Google Slides</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Keynote</span>
</div>
</div>
<!-- Feature 3 -->
<div class="bg-white rounded-xl p-8 shadow-md feature-card transition duration-300">
<div class="bg-purple-500 bg-opacity-10 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-sticky-note text-purple-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">Study Notes</h3>
<p class="text-gray-600 mb-4">Extract key concepts and create organized study notes with summaries, diagrams, and mnemonics.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Cornell Method</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Mind Maps</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Bullet Journal</span>
</div>
</div>
<!-- Feature 4 -->
<div class="bg-white rounded-xl p-8 shadow-md feature-card transition duration-300">
<div class="bg-yellow-500 bg-opacity-10 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-layer-group text-yellow-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">Smart Flashcards</h3>
<p class="text-gray-600 mb-4">Generate flashcards with spaced repetition scheduling for optimal retention of key concepts.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Anki</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Quizlet</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Spaced Repetition</span>
</div>
</div>
<!-- Feature 5 -->
<div class="bg-white rounded-xl p-8 shadow-md feature-card transition duration-300">
<div class="bg-red-500 bg-opacity-10 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-question-circle text-red-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">FAQs & Quizzes</h3>
<p class="text-gray-600 mb-4">Automatically generate frequently asked questions and quizzes to test understanding.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Multiple Choice</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">True/False</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Short Answer</span>
</div>
</div>
<!-- Feature 6 -->
<div class="bg-white rounded-xl p-8 shadow-md feature-card transition duration-300">
<div class="bg-green-500 bg-opacity-10 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-atom text-green-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">Feynman Technique</h3>
<p class="text-gray-600 mb-4">Break down complex topics into simple explanations using the Feynman learning method.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 text-gray-800 text-sm px-33 py-1 rounded-full">Simplified Explanations</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Analogies</span>
<span class="bg-gray-100 text-gray-800 text-sm px-3 py-1 rounded-full">Examples</span>
</div>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section id="how-it-works" class="py-20 bg-white">
<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 font-bold text-dark mb-4">How PDF Genius Works</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Transform your PDFs in just three simple steps</p>
</div>
<div class="flex flex-col md:flex-row items-center justify-between mb-16">
<div class="md:w-1/2 mb-10 md:mb-0">
<div class="bg-gray-100 rounded-xl p-1 inline-block mb-6">
<span class="bg-primary text-white px-4 py-1 rounded-lg font-bold">Step 1</span>
</div>
<h3 class="text-2xl font-bold text-dark mb-4">Upload Your PDF</h3>
<p class="text-gray-600 mb-6">Simply drag and drop your PDF file or select it from your device. Our system supports all standard PDF formats including scanned documents.</p>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Supports multiple PDFs at once</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">OCR for scanned documents</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Secure cloud processing</span>
</li>
</ul>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="bg-gray-50 border-2 border-gray-200 border-dashed rounded-xl p-8 w-full max-w-md">
<div class="text-center">
<i class="fas fa-cloud-upload-alt text-4xl text-gray-400 mb-4"></i>
<p class="text-gray-500 mb-4">Drag & drop your PDF here or click to browse</p>
<label for="file-upload" class="bg-primary hover:bg-primary-dark text-white px-6 py-2 rounded-md font-medium cursor-pointer transition duration-300 inline-block">
Select PDF
<input id="file-upload" type="file" class="input-file" accept=".pdf" />
</label>
<p class="text-gray-400 text-sm mt-4">Supports: .pdf (max 100MB)</p>
</div>
</div>
</div>
</div>
<div class="flex flex-col md:flex-row-reverse items-center justify-between mb-16">
<div class="md:w-1/2 mb-10 md:mb-0">
<div class="bg-gray-100 rounded-xl p-1 inline-block mb-6">
<span class="bg-secondary text-white px-4 py-1 rounded-lg font-bold">Step 2</span>
</div>
<h3 class="text-2xl font-bold text-dark mb-4">Choose Your Output Formats</h3>
<p class="text-gray-600 mb-6">Select from our wide range of output formats tailored for different learning styles and needs. Mix and match to create the perfect learning package.</p>
<div class="grid grid-cols-2 gap-4">
<div class="flex items-center bg-gray-50 p-3 rounded-lg">
<i class="fas fa-video text-primary mr-3"></i>
<span>Explainer Video</span>
</div>
<div class="flex items-center bg-gray-50 p-3 rounded-lg">
<i class="fas fa-file-powerpoint text-secondary mr-3"></i>
<span>Presentation</span>
</div>
<div class="flex items-center bg-gray-50 p-3 rounded-lg">
<i class="fas fa-sticky-note text-purple-500 mr-3"></i>
<span>Study Notes</span>
</div>
<div class="flex items-center bg-gray-50 p-3 rounded-lg">
<i class="fas fa-layer-group text-yellow-500 mr-3"></i>
<span>Flashcards</span>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="bg-white border border-gray-200 rounded-xl shadow-md p-6 w-full max-w-md">
<div class="flex items-center mb-6">
<div class="h-10 w-10 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<i class="fas fa-file-pdf text-gray-500"></i>
</div>
<div>
<p class="font-medium">Advanced_Physics_Textbook.pdf</p>
<p class="text-gray-500 text-sm">12.4 MB • Uploaded just now</p>
</div>
</div>
<div class="space-y-4">
<div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
<div class="flex items-center">
<i class="fas fa-video text-primary mr-3"></i>
<span>Explainer Video</span>
</div>
<div class="flex items-center">
<div class="tooltip">
<i class="fas fa-cog text-gray-400 hover:text-gray-600 cursor-pointer mr-3"></i>
<span class="tooltip-text">Customize video length, narration style, and visuals</span>
</div>
<div class="h-4 w-4 border-2 border-gray-300 rounded-sm"></div>
</div>
</div>
<div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
<div class="flex items-center">
<i class="fas fa-file-powerpoint text-secondary mr-3"></i>
<span>Presentation</span>
</div>
<div class="flex items-center">
<div class="tooltip">
<i class="fas fa-cog text-gray-400 hover:text-gray-600 cursor-pointer mr-3"></i>
<span class="tooltip-text">Choose slide template and content density</span>
</div>
<div class="h-4 w-4 border-2 border-gray-300 rounded-sm"></div>
</div>
</div>
<div class="flex items-center justify-between p-3 bg-primary bg-opacity-10 rounded-lg border border-primary border-opacity-30">
<div class="flex items-center">
<i class="fas fa-sticky-note text-primary mr-3"></i>
<span class="font-medium">Study Notes</span>
</div>
<div class="flex items-center">
<div class="tooltip">
<i class="fas fa-cog text-primary cursor-pointer mr-3"></i>
<span class="tooltip-text">Select note-taking method and detail level</span>
</div>
<div class="h-4 w-4 bg-primary rounded-sm flex items-center justify-center">
<i class="fas fa-check text-white text-xs"></i>
</div>
</div>
</div>
<div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
<div class="flex items-center">
<i class="fas fa-layer-group text-yellow-500 mr-3"></i>
<span>Flashcards</span>
</div>
<div class="flex items-center">
<div class="tooltip">
<i class="fas fa-cog text-gray-400 hover:text-gray-600 cursor-pointer mr-3"></i>
<span class="tooltip-text">Set flashcard format and export platform</span>
</div>
<div class="h-4 w-4 border-2 border-gray-300 rounded-sm"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/2 mb-10 md:mb-0">
<div class="bg-gray-100 rounded-xl p-1 inline-block mb-6">
<span class="bg-purple-500 text-white px-4 py-1 rounded-lg font-bold">Step 3</span>
</div>
<h3 class="text-2xl font-bold text-dark mb-4">Download & Share Your Learning Materials</h3>
<p class="text-gray-600 mb-6">Receive your transformed learning materials in minutes. Download them directly or share with classmates, students, or colleagues.</p>
<div class="flex flex-wrap gap-3">
<div class="bg-white border border-gray-200 rounded-lg p-3 flex items-center">
<i class="fas fa-download text-primary mr-2"></i>
<span>Download All</span>
</div>
<div class="bg-white border border-gray-200 rounded-lg p-3 flex items-center">
<i class="fas fa-share-alt text-secondary mr-2"></i>
<span>Share Link</span>
</div>
<div class="bg-white border border-gray-200 rounded-lg p-3 flex items-center">
<i class="fab fa-google-drive text-blue-500 mr-2"></i>
<span>Save to Drive</span>
</div>
<div class="bg-white border border-gray-200 rounded-lg p-3 flex items-center">
<i class="fas fa-print text-gray-600 mr-2"></i>
<span>Print</span>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="bg-white border border-gray-200 rounded-xl shadow-md p-6 w-full max-w-md">
<div class="flex items-center mb-6">
<div class="h-10 w-10 rounded-full bg-green-100 flex items-center justify-center mr-4">
<i class="fas fa-check text-green-500"></i>
</div>
<div>
<p class="font-medium">Processing Complete</p>
<p class="text-gray-500 text-sm">Your learning materials are ready</p>
</div>
</div>
<div class="space-y-4 mb-6">
<div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
<div class="flex items-center">
<i class="fas fa-sticky-note text-primary mr-3"></i>
<div>
<p class="font-medium">Study Notes</p>
<p class="text-gray-500 text-sm">12 pages • PDF/DOCX</p>
</div>
</div>
<div class="flex items-center space-x-2">
<button class="text-primary hover:text-primary-dark">
<i class="fas fa-eye"></i>
</button>
<button class="text-primary hover:text-primary-dark">
<i class="fas fa-download"></i>
</button>
</div>
</div>
<div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
<div class="flex items-center">
<i class="fas fa-video text-secondary mr-3"></i>
<div>
<p class="font-medium">Explainer Video</p>
<p class="text-gray-500 text-sm">8:32 min • MP4</p>
</div>
</div>
<div class="flex items-center space-x-2">
<button class="text-secondary hover:text-secondary-dark">
<i class="fas fa-play"></i>
</button>
<button class="text-secondary hover:text-secondary-dark">
<i class="fas fa-download"></i>
</button>
</div>
</div>
</div>
<button class="w-full bg-primary hover:bg-primary-dark text-white py-3 rounded-lg font-medium flex items-center justify-center">
<i class="fas fa-download mr-2"></i>
Download All Materials
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Demo Video Section -->
<section id="demo" class="py-20 bg-gray-50">
<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 font-bold text-dark mb-4">See PDF Genius in Action</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Watch how we transform a dense academic paper into engaging learning materials</p>
</div>
<div class="bg-white rounded-xl shadow-xl overflow-hidden max-w-4xl mx-auto">
<div class="aspect-w-16 aspect-h-9">
<div class="w-full h-0 pb-[56.25%] relative">
<div class="absolute inset-0 bg-gray-200 flex items-center justify-center">
<i class="fas fa-play-circle text-6xl text-primary opacity-80"></i>
</div>
</div>
</div>
<div class="p-8">
<h3 class="text-xl font-bold text-dark mb-3">From PDF to Learning Mastery in Minutes</h3>
<p class="text-gray-600 mb-6">This 3-minute demo shows how PDF Genius can help you or your students master complex material by transforming it into multiple learning formats tailored to different learning styles.</p>
<div class="flex flex-wrap gap-4">
<a href="#pricing" class="bg-primary hover:bg-primary-dark text-white px-6 py-2 rounded-md font-medium transition duration-300">Start Free Trial</a>
<a href="#" class="border border-gray-300 hover:bg-gray-50 px-6 py-2 rounded-md font-medium transition duration-300">
<i class="fas fa-download mr-2"></i>
Download Sample Materials
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-white">
<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 font-bold text-dark mb-4">What Our Users Say</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Join thousands of educators, students, and professionals who transformed their learning</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 rounded-xl p-8">
<div class="flex items-center mb-6">
<div class="h-12 w-12 rounded-full bg-purple-100 flex items-center justify-center mr-4">
<span class="text-purple-600 font-bold">AM</span>
</div>
<div>
<p class="font-bold">Dr. Anna Mitchell</p>
<p class="text-gray-500">Professor of Biology</p>
</div>
</div>
<div class="flex mb-4">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-700 mb-6">"PDF Genius has revolutionized how I prepare course materials. I can now convert dense research papers into engaging explainer videos and study guides in minutes. My students' comprehension and retention have improved dramatically."</p>
<div class="flex items-center text-gray-500">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span class="text-sm">Verified User</span>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 rounded-xl p-8">
<div class="flex items-center mb-6">
<div class="h-12 w-12 rounded-full bg-blue-100 flex items-center justify-center mr-4">
<span class="text-blue-600 font-bold">RJ</span>
</div>
<div>
<p class="font-bold">Raj Patel</p>
<p class="text-gray-500">Medical Student</p>
</div>
</div>
<div class="flex mb-4">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-700 mb-6">"As a medical student drowning in textbooks, PDF Genius has been a lifesaver. The Feynman technique explanations and flashcards generated from my PDFs help me understand and retain complex concepts much faster."</p>
<div class="flex items-center text-gray-500">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span class="text-sm">Verified User</span>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 rounded-xl p-8">
<div class="flex items-center mb-6">
<div class="h-12 w-12 rounded-full bg-green-100 flex items-center justify-center mr-4">
<span class="text-green-600 font-bold">SM</span>
</div>
<div>
<p class="font-bold">Sarah Johnson</p>
<p class="text-gray-500">Corporate Trainer</p>
</div>
</div>
<div class="flex mb-4">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-700 mb-6">"Our training materials used to be dry PDF manuals that no one read. Now we convert them into interactive presentations and short videos. Engagement in our training sessions has increased by 70% since we started using PDF Genius."</p>
<div class="flex items-center text-gray-500">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span class="text-sm">Verified User</span>
</div>
</div>
</div>
<div class="mt-16 text-center">
<a href="#" class="inline-flex items-center text-primary font-medium">
Read more success stories
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 bg-gray-50">
<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 font-bold text-dark mb-4">Simple, Transparent Pricing</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Choose the plan that fits your needs</p>
</div>
<div class="flex justify-center mb-8">
<div class="bg-white rounded-full p-1 shadow-sm">
<button class="px-6 py-2 rounded-full font-medium bg-primary text-white">Monthly</button>
<button class="px-6 py-2 rounded-full font-medium text-gray-600 hover:bg-gray-100">Annual (Save 20%)</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Free Plan -->
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="p-8">
<h3 class="text-xl font-bold text-dark mb-2">Starter</h3>
<p class="text-gray-600 mb-6">Perfect for individual learners</p>
<div class="mb-6">
<span class="text-4xl font-bold text-dark">$0</span>
<span class="text-gray-500">/month</span>
</div>
<a href="#" class="block w-full bg-gray-100 hover:bg-gray-200 text-dark text-center py-3 rounded-lg font-medium transition duration-300 mb-6">
Get Started
</a>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">5 PDF conversions per month</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Basic explainer videos (5 min max)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Standard study notes</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">20 flashcards per PDF</span>
</li>
<li class="flex items-start text-gray-400">
<i class="fas fa-times mt-1 mr-2"></i>
<span>No Feynman technique explanations</span>
</li>
<li class="flex items-start text-gray-400">
<i class="fas fa-times mt-1 mr-2"></i>
<span>No custom branding</span>
</li>
</ul>
</div>
</div>
<!-- Pro Plan -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden border-2 border-primary relative">
<div class="absolute top-0 right-0 bg-primary text-white text-xs font-bold px-3 py-1 rounded-bl-lg">
MOST POPULAR
</div>
<div class="p-8">
<h3 class="text-xl font-bold text-dark mb-2">Pro Learner</h3>
<p class="text-gray-600 mb-6">Ideal for serious students & educators</p>
<div class="mb-6">
<span class="text-4xl font-bold text-dark">$12</span>
<span class="text-gray-500">/month</span>
</div>
<a href="#" class="block w-full bg-primary hover:bg-primary-dark text-white text-center py-3 rounded-lg font-medium transition duration-300 mb-6">
Start 7-Day Free Trial
</a>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">30 PDF conversions per month</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">HD explainer videos (15 min max)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Advanced study notes with diagrams</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Unlimited flashcards</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Feynman technique explanations</span>
</li>
<li class="flex items-start text-gray-400">
<i class="fas fa-times mt-1 mr-2"></i>
<span>No custom branding</span>
</li>
</ul>
</div>
</div>
<!-- Team Plan -->
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="p-8">
<h3 class="text-xl font-bold text-dark mb-2">Institution</h3>
<p class="text-gray-600 mb-6">For schools & organizations</p>
<div class="mb-6">
<span class="text-4xl font-bold text-dark">$49</span>
<span class="text-gray-500">/month</span>
</div>
<a href="#" class="block w-full bg-gray-100 hover:bg-gray-200 text-dark text-center py-3 rounded-lg font-medium transition duration-300 mb-6">
Contact Sales
</a>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Unlimited PDF conversions</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">4K explainer videos (60 min max)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Premium study notes with mind maps</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Unlimited flashcards</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Advanced Feynman explanations</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Custom branding & white-labeling</span>
</li>
</ul>
</div>
</div>
</div>
<div class="mt-12 bg-white rounded-xl shadow-md p-8 max-w-4xl mx-auto">
<h3 class="text-xl font-bold text-dark mb-6 text-center">Frequently Asked Questions</h3>
<div class="space-y-4">
<div class="border-b border-gray-200 pb-4">
<button class="flex items-center justify-between w-full text-left font-medium text-dark hover:text-primary focus:outline-none">
<span>How accurate are the generated learning materials?</span>
<i class="fas fa-chevron-down text-gray-400"></i>
</button>
<div class="mt-2 text-gray-600">
Our AI analyzes your PDF content with over 95% accuracy. For technical or complex subjects, we recommend reviewing the outputs, though most users find them ready to use immediately.
</div>
</div>
<div class="border-b border-gray-200 pb-4">
<button class="flex items-center justify-between w-full text-left font-medium text-dark hover:text-primary focus:outline-none">
<span>What file formats can I export to?</span>
<i class="fas fa-chevron-down text-gray-400"></i>
</button>
<div class="mt-2 text-gray-600">
Videos: MP4, Presentations: PPTX, PDF, Study Notes: DOCX, PDF, Markdown, Flashcards: CSV (for Anki/Quizlet), PDF, and more.
</div>
</div>
<div class="border-b border-gray-200 pb-4">
<button class="flex items-center justify-between w-full text-left font-medium text-dark hover:text-primary focus:outline-none">
<span>Is there a limit to PDF size?</span>
<i class="fas fa-chevron-down text-gray-400"></i>
</button>
<div class="mt-2 text-gray-600">
Free plan: 20MB, Pro: 100MB, Institution: 500MB. For larger files, contact our support team for special processing options.
</div>
</div>
<div class="border-b border-gray-200 pb-4">
<button class="flex items-center justify-between w-full text-left font-medium text-dark hover:text-primary focus:outline-none">
<span>Can I edit the generated materials?</span>
<i class="fas fa-chevron-down text-gray-400"></i>
</button>
<div class="mt-2 text-gray-600">
Absolutely! All outputs are fully editable. For presentations and documents, we provide editable files. Videos come with project files for our online editor.
</div>
</div>
<div>
<button class="flex items-center justify-between w-full text-left font-medium text-dark hover:text-primary focus:outline-none">
<span>How secure is my data?</span>
<i class="fas fa-chevron-down text-gray-400"></i>
</button>
<div class="mt-2 text-gray-600">
We use enterprise-grade encryption for all file transfers and storage. You can also request automatic deletion of your files after processing.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-primary text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Transform Your Learning Experience?</h2>
<p class="text-xl opacity-90 mb-8 max-w-3xl mx-auto">Join over 50,000 educators, students, and professionals who use PDF Genius to make learning faster, easier, and more engaging.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#pricing" class="bg-white text-primary hover:bg-gray-100 px-8 py-4 rounded-lg font-bold text-lg transition duration-300">Start Free Trial</a>
<a href="#demo" class="border-2 border-white hover:bg-white hover:bg-opacity-10 px-8 py-4 rounded-lg font-bold text-lg transition duration-300">Watch Product Demo</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-5 gap-8">
<div class="col-span-2">
<div class="flex items-center mb-6">
<i class="fas fa-brain text-primary text-3xl mr-2"></i>
<span class="text-xl font-bold">PDF Genius</span>
</div>
<p class="text-gray-400 mb-6">Transforming static PDFs into dynamic learning experiences with AI-powered technology.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-youtube text-xl"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Product</h3>
<ul class="space-y-2">
<li><a href="#features" class="text-gray-400 hover:text-white">Features</a></li>
<li><a href="#pricing" class="text-gray-400 hover:text-white">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Integrations</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Updates</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Roadmap</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Tutorials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Community</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Webinars</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Press</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Partners</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 PDF Genius. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<script>
// Simple FAQ toggle functionality
document.querySelectorAll('footer button').forEach(button => {
button.addEventListener('click', () => {
const answer = button.nextElementSibling;
const icon = button.querySelector('i');
if (answer.style.display === 'none' || !answer.style.display) {
answer.style.display = 'block';
icon.classList.remove('fa-chevron-down');
icon.classList.add('fa-chevron-up');
} else {
answer.style.display = 'none';
icon.classList.remove('fa-chevron-up');
icon.classList.add('fa-chevron-down');
}
});
});
// File upload label update
const fileUpload = document.getElementById('file-upload');
if (fileUpload) {
fileUpload.addEventListener('change', function(e) {
const fileName = e.target.files[0]?.name || 'Select PDF';
const label = fileUpload.nextElementSibling;
label.textContent = fileName;
});
}
// Mobile menu toggle would go here
// This is just a placeholder for the actual implementation
</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=misbahsy/pdf-genius" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
</html>