Generate an image editing application using which a user generates a product photoshoot image using the products image and a prompt about how the photoshoot should appear like with credits based subscription model and google login
9bac6d3 verified | <html lang="en" class="h-full"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Pricing | PixelPerfect AI Studio</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#6366f1', | |
| secondary: '#8b5cf6', | |
| dark: '#1e293b', | |
| light: '#f8fafc' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| .gradient-text { | |
| background-clip: text; | |
| -webkit-background-clip: text; | |
| color: transparent; | |
| background-image: linear-gradient(45deg, #6366f1, #8b5cf6); | |
| } | |
| .pricing-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); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-light min-h-full font-sans antialiased"> | |
| <nav class="bg-white shadow-sm"> | |
| <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"> | |
| <a href="index.html" class="flex-shrink-0 flex items-center"> | |
| <span class="text-xl font-bold gradient-text">PixelPerfect AI</span> | |
| </a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <a href="index.html" class="text-gray-600 hover:text-primary px-3 py-2 rounded-md text-sm font-medium">Home</a> | |
| <a href="#" class="text-primary px-3 py-2 rounded-md text-sm font-medium">Pricing</a> | |
| <a href="#" class="text-gray-600 hover:text-primary px-3 py-2 rounded-md text-sm font-medium">Gallery</a> | |
| <button class="bg-primary text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-600 transition">Sign In</button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16"> | |
| <section class="text-center mb-16"> | |
| <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">Simple, Transparent <span class="gradient-text">Pricing</span></h1> | |
| <p class="text-lg text-gray-600 max-w-2xl mx-auto">Choose the plan that fits your needs. Pay as you go or save with a subscription.</p> | |
| </section> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto"> | |
| <div class="bg-white rounded-xl shadow-md p-8 pricing-card transition duration-300"> | |
| <div class="text-center"> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Starter</h3> | |
| <p class="text-gray-600 mb-6">For occasional users</p> | |
| <div class="mb-6"> | |
| <span class="text-4xl font-bold text-gray-900">$9</span> | |
| <span class="text-gray-600"> / month</span> | |
| </div> | |
| <ul class="space-y-3 mb-8 text-gray-600"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| 20 credits/month | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| Basic generation | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="x" class="w-4 h-4 text-gray-300 mr-2"></i> | |
| No priority processing | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-100 text-gray-800 px-4 py-3 rounded-md font-medium hover:bg-gray-200 transition"> | |
| Get Started | |
| </button> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl shadow-lg p-8 pricing-card border-2 border-primary transform scale-105 transition duration-300"> | |
| <div class="text-center"> | |
| <div class="mb-4"> | |
| <span class="inline-block bg-primary text-white text-xs font-semibold px-3 py-1 rounded-full uppercase tracking-wide">Popular</span> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Professional</h3> | |
| <p class="text-gray-600 mb-6">For growing businesses</p> | |
| <div class="mb-6"> | |
| <span class="text-4xl font-bold text-gray-900">$29</span> | |
| <span class="text-gray-600"> / month</span> | |
| </div> | |
| <ul class="space-y-3 mb-8 text-gray-600"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| 100 credits/month | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| Advanced generation | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| Priority processing | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| HD downloads | |
| </li> | |
| </ul> | |
| <button class="w-full bg-primary text-white px-4 py-3 rounded-md font-medium hover:bg-indigo-600 transition"> | |
| Get Started | |
| </button> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl shadow-md p-8 pricing-card transition duration-300"> | |
| <div class="text-center"> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Enterprise</h3> | |
| <p class="text-gray-600 mb-6">For high-volume needs</p> | |
| <div class="mb-6"> | |
| <span class="text-4xl font-bold text-gray-900">$99</span> | |
| <span class="text-gray-600"> / month</span> | |
| </div> | |
| <ul class="space-y-3 mb-8 text-gray-600"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| 500 credits/month | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| Premium generation | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| Instant processing | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| Ultra HD downloads | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i> | |
| Dedicated support | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-100 text-gray-800 px-4 py-3 rounded-md font-medium hover:bg-gray-200 transition"> | |
| Get Started | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-16 bg-gray-50 rounded-xl p-8 max-w-4xl mx-auto"> | |
| <h2 class="text-2xl font-bold text-gray-900 mb-6 text-center">Pay As You Go</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> | |
| <div class="bg-white rounded-lg shadow-sm p-6 text-center"> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">10 Credits</h3> | |
| <p class="text-gray-600 mb-4">$4.90</p> | |
| <button class="w-full bg-primary text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-600 transition"> | |
| Purchase | |
| </button> | |
| </div> | |
| <div class="bg-white rounded-lg shadow-sm p-6 text-center"> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">25 Credits</h3> | |
| <p class="text-gray-600 mb-4">$11.50 ($0.46/credit)</p> | |
| <button class="w-full bg-primary text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-600 transition"> | |
| Purchase | |
| </button> | |
| </div> | |
| <div class="bg-white rounded-lg shadow-sm p-6 text-center"> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">50 Credits</h3> | |
| <p class="text-gray-600 mb-4">$20.00 ($0.40/credit)</p> | |
| <button class="w-full bg-primary text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-600 transition"> | |
| Purchase | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <section class="mt-20 text-center"> | |
| <h2 class="text-2xl font-bold text-gray-900 mb-4">Frequently Asked Questions</h2> | |
| <div class="max-w-3xl mx-auto space-y-6"> | |
| <div class="bg-white rounded-lg shadow-sm p-6 text-left"> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">What counts as one credit?</h3> | |
| <p class="text-gray-600">Each AI-generated image costs 1 credit, regardless of complexity. You can preview the result before using a credit.</p> | |
| </div> | |
| <div class="bg-white rounded-lg shadow-sm p-6 text-left"> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Can I cancel anytime?</h3> | |
| <p class="text-gray-600">Yes, all plans are month-to-month with no long-term contracts. Cancel anytime and keep your remaining credits until they expire.</p> | |
| </div> | |
| <div class="bg-white rounded-lg shadow-sm p-6 text-left"> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Do credits roll over?</h3> | |
| <p class="text-gray-600">Subscription credits expire at the end of each billing cycle. Purchased credits (one-time packs) expire after 6 months.</p> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <footer class="bg-white border-t border-gray-200 mt-20"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-500 text-sm mb-4 md:mb-0">© 2023 PixelPerfect AI. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-primary"> | |
| <i data-feather="twitter" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-primary"> | |
| <i data-feather="instagram" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-primary"> | |
| <i data-feather="facebook" class="w-5 h-5"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Initialize Feather Icons | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |