Spaces:
Running
Running
File size: 44,424 Bytes
5e44edb | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conversational Code - Enhancing Software Development with Dialogue Systems</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>
.gradient-bg {
background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
}
.book-cover {
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
transform: perspective(1000px) rotateY(-10deg);
transition: all 0.3s ease;
}
.book-cover:hover {
transform: perspective(1000px) rotateY(0deg);
}
.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);
}
.testimonial-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Navigation -->
<nav class="bg-white shadow-sm 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">
<i class="fas fa-robot text-purple-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">Conversational Code</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#features" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Features</a>
<a href="#contents" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Contents</a>
<a href="#testimonials" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Testimonials</a>
<a href="#pricing" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Get the eBook</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="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-purple-500" id="mobile-menu-button">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden md:hidden" id="mobile-menu">
<div class="pt-2 pb-3 space-y-1">
<a href="#features" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">Features</a>
<a href="#contents" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">Contents</a>
<a href="#testimonials" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">Testimonials</a>
<a href="#pricing" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">Get the eBook</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-28">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Revolutionize Your Coding Workflow with <span class="text-yellow-300">Conversational AI</span></h1>
<p class="text-xl mb-8 opacity-90">Discover how dialogue systems can accelerate your development process, reduce bugs, and make coding more intuitive than ever before.</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-purple-600 hover:bg-gray-100 font-bold py-3 px-8 rounded-lg text-lg shadow-lg transition duration-300 transform hover:scale-105 text-center">Get the eBook Now</a>
<a href="#preview" class="border-2 border-white text-white hover:bg-white hover:text-purple-600 font-bold py-3 px-8 rounded-lg text-lg transition duration-300 text-center">Read Free Preview</a>
</div>
<div class="mt-8 flex items-center">
<div class="flex -space-x-2">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/12.jpg" alt="">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/11.jpg" alt="">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/17.jpg" alt="">
</div>
<p class="ml-4 text-sm opacity-80">Join <span class="font-bold">1,200+ developers</span> who transformed their workflow</p>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative animate-float">
<div class="book-cover bg-white rounded-lg p-6 w-64 h-80 md:w-72 md:h-96 relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-br from-purple-400 to-blue-500 opacity-20"></div>
<div class="relative z-10 h-full flex flex-col">
<div class="flex-1">
<h3 class="text-2xl font-bold text-gray-800 mb-2">Conversational Code</h3>
<p class="text-gray-600 text-sm">Enhancing Software Development with Dialogue Systems</p>
</div>
<div class="mt-auto">
<div class="h-1 w-full bg-gradient-to-r from-purple-400 to-blue-500 mb-2"></div>
<p class="text-xs text-gray-500">The future of developer-AI collaboration</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trust Badges -->
<section class="bg-gray-100 py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p class="text-center text-gray-500 mb-6">Trusted by developers at</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<i class="fab fa-google text-3xl text-gray-600 hover:text-purple-600"></i>
<i class="fab fa-microsoft text-3xl text-gray-600 hover:text-purple-600"></i>
<i class="fab fa-github text-3xl text-gray-600 hover:text-purple-600"></i>
<i class="fab fa-stack-overflow text-3xl text-gray-600 hover:text-purple-600"></i>
<i class="fab fa-aws text-3xl text-gray-600 hover:text-purple-600"></i>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" 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 md:text-4xl font-bold text-gray-900 mb-4">Transform Your Development Process</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Learn how conversational AI can become your most valuable coding partner</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md border border-gray-100 transition duration-300">
<div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-bolt text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Accelerated Development</h3>
<p class="text-gray-600">Reduce boilerplate coding time by up to 60% with AI-assisted code generation and intelligent autocompletion.</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md border border-gray-100 transition duration-300">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-bug text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Bug Prevention</h3>
<p class="text-gray-600">Catch potential issues before they happen with conversational code reviews and real-time suggestions.</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md border border-gray-100 transition duration-300">
<div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-graduation-cap text-green-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Continuous Learning</h3>
<p class="text-gray-600">Adaptive dialogue systems that learn your coding style and preferences for increasingly personalized assistance.</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md border border-gray-100 transition duration-300">
<div class="w-14 h-14 bg-yellow-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-comments text-yellow-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Natural Interaction</h3>
<p class="text-gray-600">Move beyond rigid commands - communicate with your tools using natural language just like talking to a colleague.</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md border border-gray-100 transition duration-300">
<div class="w-14 h-14 bg-red-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-users text-red-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Team Collaboration</h3>
<p class="text-gray-600">AI-powered documentation that understands team discussions and automatically updates project knowledge bases.</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md border border-gray-100 transition duration-300">
<div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-lightbulb text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Creative Problem Solving</h3>
<p class="text-gray-600">Break through mental blocks with AI that suggests alternative approaches and creative solutions to complex problems.</p>
</div>
</div>
</div>
</section>
<!-- Preview Section -->
<section id="preview" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">See What's Inside</h2>
<p class="text-lg text-gray-600 mb-8">Get a free preview of the first chapter and discover how conversational interfaces are reshaping software development.</p>
<div class="bg-white p-6 rounded-lg shadow-md mb-8">
<h3 class="font-bold text-lg text-gray-800 mb-3">Chapter 1 Preview Includes:</h3>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">The evolution of developer tools from CLI to conversational AI</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Case study: How GitHub Copilot changed developer workflows</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Practical exercise: Setting up your first conversational coding assistant</span>
</li>
</ul>
</div>
<button class="bg-purple-600 hover:bg-purple-700 text-white font-bold py-3 px-8 rounded-lg text-lg shadow-lg transition duration-300 flex items-center">
<i class="fas fa-download mr-2"></i> Download Free Preview
</button>
</div>
<div class="md:w-1/2">
<div class="bg-white p-6 rounded-xl shadow-xl border border-gray-200 max-w-md mx-auto">
<div class="bg-gray-800 text-white p-4 rounded-t-lg flex items-center">
<div class="flex space-x-2 mr-3">
<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">terminal</span>
</div>
<div class="bg-black text-green-400 p-4 font-mono text-sm rounded-b-lg h-64 overflow-y-auto">
<p class="mb-2"><span class="text-gray-400">$</span> ai --explain "this React component"</p>
<p class="mb-4 text-gray-300">This is a functional React component that implements a counter with increment/decrement functionality. It uses the useState hook to manage state...</p>
<p class="mb-2"><span class="text-gray-400">$</span> ai --suggest "better error handling for this API call"</p>
<p class="mb-4 text-gray-300">Consider adding try/catch blocks and implementing exponential backoff for retries. Here's an improved version:</p>
<p class="text-blue-300">async function fetchData() {<br>
try {<br>
const response = await axios.get(url, {<br>
timeout: 5000<br>
});<br>
return response.data;<br>
} catch (error) {<br>
// Handle different error types...<br>
}<br>
}</p>
<p class="mt-4 text-gray-400">// Press tab to accept suggestion</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contents Section -->
<section id="contents" 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 md:text-4xl font-bold text-gray-900 mb-4">What You'll Learn</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">A comprehensive guide to integrating conversational AI into your development workflow</p>
</div>
<div class="grid md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<!-- Left Column -->
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-purple-100 text-purple-800 rounded-lg p-3 mr-4">
<i class="fas fa-code text-lg"></i>
</div>
<div>
<h3 class="font-bold text-lg text-gray-800 mb-2">Fundamentals of Dialogue Systems</h3>
<p class="text-gray-600">Understand the architecture and components of modern conversational AI systems.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 text-blue-800 rounded-lg p-3 mr-4">
<i class="fas fa-terminal text-lg"></i>
</div>
<div>
<h3 class="font-bold text-lg text-gray-800 mb-2">Integrating with IDEs</h3>
<p class="text-gray-600">Step-by-step guides for VS Code, IntelliJ, and other popular development environments.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 text-green-800 rounded-lg p-3 mr-4">
<i class="fas fa-shield-alt text-lg"></i>
</div>
<div>
<h3 class="font-bold text-lg text-gray-800 mb-2">Security Considerations</h3>
<p class="text-gray-600">Best practices for keeping your code secure when using AI assistants.</p>
</div>
</div>
</div>
<!-- Right Column -->
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-yellow-100 text-yellow-800 rounded-lg p-3 mr-4">
<i class="fas fa-project-diagram text-lg"></i>
</div>
<div>
<h3 class="font-bold text-lg text-gray-800 mb-2">Workflow Optimization</h3>
<p class="text-gray-600">Techniques for maximizing productivity with conversational interfaces.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-red-100 text-red-800 rounded-lg p-3 mr-4">
<i class="fas fa-users-cog text-lg"></i>
</div>
<div>
<h3 class="font-bold text-lg text-gray-800 mb-2">Team Collaboration Patterns</h3>
<p class="text-gray-600">How to effectively use conversational AI in team environments.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-indigo-100 text-indigo-800 rounded-lg p-3 mr-4">
<i class="fas fa-crystal-ball text-lg"></i>
</div>
<div>
<h3 class="font-bold text-lg text-gray-800 mb-2">Future Trends</h3>
<p class="text-gray-600">Emerging technologies that will shape the next generation of developer tools.</p>
</div>
</div>
</div>
</div>
<div class="mt-16 text-center">
<a href="#pricing" class="inline-block bg-purple-600 hover:bg-purple-700 text-white font-bold py-3 px-8 rounded-lg text-lg shadow-lg transition duration-300">
Get Full Access Now
</a>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 gradient-bg text-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 md:text-4xl font-bold mb-4">What Developers Are Saying</h2>
<p class="text-xl opacity-90 max-w-3xl mx-auto">Hear from engineers who transformed their workflow with conversational coding</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card p-8 rounded-xl transition duration-300 hover:bg-white hover:bg-opacity-20">
<div class="flex items-center mb-6">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J.">
<div>
<h4 class="font-bold">Sarah J.</h4>
<p class="text-sm opacity-80">Senior Frontend Developer</p>
</div>
</div>
<p class="mb-6">"This book completely changed how I approach debugging. The conversational techniques helped me cut my debug time in half while producing more robust code."</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card p-8 rounded-xl transition duration-300 hover:bg-white hover:bg-opacity-20">
<div class="flex items-center mb-6">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T.">
<div>
<h4 class="font-bold">Michael T.</h4>
<p class="text-sm opacity-80">CTO at TechStart</p>
</div>
</div>
<p class="mb-6">"We implemented the team collaboration patterns from Chapter 7 across our engineering org. The productivity gains were immediate and measurable."</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card p-8 rounded-xl transition duration-300 hover:bg-white hover:bg-opacity-20">
<div class="flex items-center mb-6">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/28.jpg" alt="Priya K.">
<div>
<h4 class="font-bold">Priya K.</h4>
<p class="text-sm opacity-80">ML Engineer</p>
</div>
</div>
<p class="mb-6">"The IDE integration techniques were worth the price alone. I now have a conversational assistant that understands my specific ML workflow."</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" 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 md:text-4xl font-bold text-gray-900 mb-4">Get Your Copy Today</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Choose the package that fits your learning needs</p>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Tier -->
<div class="border border-gray-200 rounded-xl p-8 hover:shadow-lg transition duration-300">
<h3 class="text-2xl font-bold text-gray-800 mb-2">Starter</h3>
<p class="text-gray-600 mb-6">Perfect for individual developers</p>
<div class="mb-8">
<span class="text-4xl font-bold text-gray-900">$29</span>
<span class="text-gray-500">/ one-time</span>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Full eBook (PDF, ePub, Mobi)</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">Code samples repository</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 cheat sheets</span>
</li>
<li class="flex items-start opacity-50">
<i class="fas fa-times text-gray-400 mt-1 mr-2"></i>
<span class="text-gray-500">Video tutorials</span>
</li>
<li class="flex items-start opacity-50">
<i class="fas fa-times text-gray-400 mt-1 mr-2"></i>
<span class="text-gray-500">Community access</span>
</li>
</ul>
<button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 font-bold py-3 px-4 rounded-lg transition duration-300">
Get Starter Package
</button>
</div>
<!-- Popular Tier -->
<div class="border-2 border-purple-500 rounded-xl p-8 hover:shadow-lg transition duration-300 transform hover:scale-105 relative">
<div class="absolute top-0 right-0 bg-purple-500 text-white text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">MOST POPULAR</div>
<h3 class="text-2xl font-bold text-gray-800 mb-2">Professional</h3>
<p class="text-gray-600 mb-6">For developers who want the complete experience</p>
<div class="mb-8">
<span class="text-4xl font-bold text-gray-900">$59</span>
<span class="text-gray-500">/ one-time</span>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Everything in Starter</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">6 video tutorials</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 cheat sheets</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">Private community access</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">3 months of updates</span>
</li>
</ul>
<button class="w-full bg-purple-600 hover:bg-purple-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300">
Get Professional Package
</button>
</div>
<!-- Team Tier -->
<div class="border border-gray-200 rounded-xl p-8 hover:shadow-lg transition duration-300">
<h3 class="text-2xl font-bold text-gray-800 mb-2">Team</h3>
<p class="text-gray-600 mb-6">For engineering teams of 5+</p>
<div class="mb-8">
<span class="text-4xl font-bold text-gray-900">$199</span>
<span class="text-gray-500">/ one-time</span>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span class="text-gray-700">Everything in Professional</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">License for 5 team members</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">Team implementation guide</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">1 year of updates</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">Priority support</span>
</li>
</ul>
<button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 font-bold py-3 px-4 rounded-lg transition duration-300">
Get Team Package
</button>
</div>
</div>
<div class="mt-16 bg-gray-50 rounded-xl p-8 max-w-4xl mx-auto">
<h3 class="text-xl font-bold text-gray-800 mb-4 text-center">Not Sure Which Package is Right?</h3>
<p class="text-gray-600 mb-6 text-center">Take our 30-second quiz to get a personalized recommendation based on your role, team size, and goals.</p>
<div class="text-center">
<button class="inline-flex items-center bg-white hover:bg-gray-100 text-gray-800 font-bold py-3 px-6 rounded-lg border border-gray-300 transition duration-300">
<i class="fas fa-clipboard-list mr-2"></i> Take the Quiz
</button>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Frequently Asked Questions</h2>
<p class="text-xl text-gray-600">Everything you need to know about the eBook</p>
</div>
<div class="space-y-6">
<!-- FAQ 1 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="flex items-start justify-between w-full text-left" onclick="toggleFAQ(1)">
<h3 class="font-bold text-lg text-gray-800">What format does the eBook come in?</h3>
<i class="fas fa-chevron-down ml-4 text-purple-600 transition-transform duration-300" id="faq-icon-1"></i>
</button>
<div class="hidden mt-4 text-gray-600" id="faq-content-1">
<p>The eBook is available in three formats: PDF (for reading on any device), ePub (optimized for e-readers like Apple Books), and Mobi (for Kindle devices). You'll get access to all three formats with your purchase.</p>
</div>
</div>
<!-- FAQ 2 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="flex items-start justify-between w-full text-left" onclick="toggleFAQ(2)">
<h3 class="font-bold text-lg text-gray-800">Is there a money-back guarantee?</h3>
<i class="fas fa-chevron-down ml-4 text-purple-600 transition-transform duration-300" id="faq-icon-2"></i>
</button>
<div class="hidden mt-4 text-gray-600" id="faq-content-2">
<p>Absolutely! We offer a 30-day money-back guarantee. If you're not completely satisfied with the eBook, just email us within 30 days of purchase for a full refund, no questions asked.</p>
</div>
</div>
<!-- FAQ 3 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="flex items-start justify-between w-full text-left" onclick="toggleFAQ(3)">
<h3 class="font-bold text-lg text-gray-800">How current is the information?</h3>
<i class="fas fa-chevron-down ml-4 text-purple-600 transition-transform duration-300" id="faq-icon-3"></i>
</button>
<div class="hidden mt-4 text-gray-600" id="faq-content-3">
<p>The eBook was completely updated in June 2023 and covers all the latest developments in conversational AI for coding. We also provide regular updates to Professional and Team package holders as the field evolves.</p>
</div>
</div>
<!-- FAQ 4 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="flex items-start justify-between w-full text-left" onclick="toggleFAQ(4)">
<h3 class="font-bold text-lg text-gray-800">Do I need programming experience?</h3>
<i class="fas fa-chevron-down ml-4 text-purple-600 transition-transform duration-300" id="faq-icon-4"></i>
</button>
<div class="hidden mt-4 text-gray-600" id="faq-content-4">
<p>Yes, this book assumes you have at least intermediate programming skills. While we explain all concepts clearly, the techniques are most valuable for developers with some professional experience who want to enhance their workflow.</p>
</div>
</div>
<!-- FAQ 5 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="flex items-start justify-between w-full text-left" onclick="toggleFAQ(5)">
<h3 class="font-bold text-lg text-gray-800">Can I upgrade my package later?</h3>
<i class="fas fa-chevron-down ml-4 text-purple-600 transition-transform duration-300" id="faq-icon-5"></i>
</button>
<div class="hidden mt-4 text-gray-600" id="faq-content-5">
<p>Certainly! You can upgrade from Starter to Professional or Team at any time. Just contact our support team and we'll apply your original payment toward the upgrade.</p>
</div>
</div>
</div>
<div class="mt-12 text-center">
<p class="text-gray-600 mb-4">Still have questions?</p>
<button class="inline-flex items-center bg-purple-600 hover:bg-purple-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300">
<i class="fas fa-envelope mr-2"></i> Contact Support
</button>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg text-white py-16">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Coding Workflow?</h2>
<p class="text-xl opacity-90 mb-8">Join thousands of developers who are building better software with conversational AI</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-purple-600 hover:bg-gray-100 font-bold py-3 px-8 rounded-lg text-lg shadow-lg transition duration-300 transform hover:scale-105 text-center">Get the eBook Now</a>
<a href="#preview" class="border-2 border-white text-white hover:bg-white hover:text-purple-600 font-bold py-3 px-8 rounded-lg text-lg transition duration-300 text-center">Read Free Preview</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8">
<div class="md:col-span-2">
<div class="flex items-center mb-4">
<i class="fas fa-robot text-purple-500 text-2xl mr-2"></i>
<span class="text-xl font-bold">Conversational Code</span>
</div>
<p class="text-gray-400 mb-4">The definitive guide to enhancing software development with dialogue systems and conversational AI.</p>
<div class="flex space-x-4">
<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-github"></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-dev"></i></a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Documentation</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">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Support</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800">
<p class="text-gray-400 text-sm text-center">© 2023 Conversational Code. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// FAQ toggle function
function toggleFAQ(id) {
const content = document.getElementById(`faq-content-${id}`);
const icon = document.getElementById(`faq-icon-${id}`);
content.classList.toggle('hidden');
icon.classList.toggle('transform');
icon.classList.toggle('rotate-180');
}
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
}
});
});
</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=S-Dreamer/conversational-code" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |