prompt-enhancer / index.html
timsmykov's picture
Let's choose better color for heading and footer, not this blue one. - Initial Deployment
d2e864c verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prompt Enhancer - Improve Your AI Prompts</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">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#3B82F6',
secondary: '#1E40AF',
accent: '#60A5FA',
dark: '#1E293B',
light: '#F8FAFC'
},
fontFamily: {
sans: ['Inter', 'sans-serif']
}
}
}
}
</script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
.step-number {
min-width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
}
.faq-item {
transition: all 0.3s ease;
}
.faq-item.active {
background-color: #1E293B;
}
.mockup-browser {
border-radius: 0.75rem;
overflow: hidden;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.mockup-browser-bar {
height: 30px;
background: #334155;
border-bottom: 1px solid #475569;
padding: 0 12px;
display: flex;
align-items: center;
}
.mockup-browser-dot {
width: 12px;
height: 12px;
border-radius: 50%;
margin-right: 6px;
}
.mockup-browser-dot-red { background-color: #ef4444; }
.mockup-browser-dot-yellow { background-color: #eab308; }
.mockup-browser-dot-green { background-color: #22c55e; }
.mockup-browser-content {
padding: 20px;
background: #1E293B;
}
.enhanced-prompt {
animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body class="font-sans bg-gray-900 text-gray-100">
<!-- Hero Section -->
<header class="gradient-bg text-white">
<div class="container mx-auto px-4 py-16 md:py-24">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-4 leading-tight">Prompt Enhancer</h1>
<p class="text-xl md:text-2xl mb-8 opacity-90">Enhance your AI prompts in seconds</p>
<p class="text-lg mb-8 max-w-lg">Transform your vague ideas into powerful, precise prompts that get better results from AI models like ChatGPT, Claude, and more.</p>
<button id="joinWaitlistBtn" class="bg-white text-primary font-bold py-3 px-8 rounded-lg text-lg hover:bg-gray-100 transition duration-300 transform hover:scale-105">
Join Waitlist
</button>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="mockup-browser w-full max-w-md">
<div class="mockup-browser-bar">
<div class="mockup-browser-dot mockup-browser-dot-red"></div>
<div class="mockup-browser-dot mockup-browser-dot-yellow"></div>
<div class="mockup-browser-dot mockup-browser-dot-green"></div>
</div>
<div class="mockup-browser-content">
<div class="bg-gray-800 p-4 rounded-lg shadow mb-4">
<p class="text-gray-400 mb-2">Original prompt:</p>
<p class="font-medium text-gray-200">Write about AI</p>
</div>
<div class="flex justify-center my-3">
<i class="fas fa-arrow-down text-primary text-2xl"></i>
</div>
<div class="bg-gray-800 p-4 rounded-lg shadow enhanced-prompt">
<p class="text-gray-400 mb-2">Enhanced prompt:</p>
<p class="font-medium text-gray-200">Write a comprehensive 1500-word article about the ethical implications of artificial intelligence in healthcare, focusing on patient privacy and diagnostic accuracy. Include real-world examples and future implications.</p>
</div>
<div class="mt-4 text-center">
<button class="bg-primary text-white py-2 px-4 rounded-lg text-sm font-medium hover:bg-secondary transition">
<i class="fas fa-magic mr-2"></i>Enhance Prompt
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Benefits Section -->
<section class="py-16 bg-gray-800">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">Why Prompt Enhancer?</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="card-hover bg-gray-700 p-8 rounded-xl border border-gray-600">
<div class="w-14 h-14 rounded-full bg-blue-900 flex items-center justify-center mb-6">
<i class="fas fa-clock text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Saves Your Time</h3>
<p class="text-gray-300">No more spending hours crafting the perfect prompt. Get professional results in seconds with a single click.</p>
</div>
<div class="card-hover bg-gray-700 p-8 rounded-xl border border-gray-600">
<div class="w-14 h-14 rounded-full bg-blue-900 flex items-center justify-center mb-6">
<i class="fas fa-star text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Improves Response Quality</h3>
<p class="text-gray-300">Get more accurate, relevant, and detailed responses from AI models by using optimized prompts.</p>
</div>
<div class="card-hover bg-gray-700 p-8 rounded-xl border border-gray-600">
<div class="w-14 h-14 rounded-full bg-blue-900 flex items-center justify-center mb-6">
<i class="fas fa-plug text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Universal Compatibility</h3>
<p class="text-gray-300">Works seamlessly with ChatGPT, Claude, Grok, Perplexity, and any other AI platform you use.</p>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section class="py-16 bg-gray-900">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">How It Works</h2>
<div class="max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row items-start mb-12">
<div class="step-number bg-primary text-white rounded-full font-bold text-xl mb-4 md:mb-0 md:mr-6">1</div>
<div class="flex-1">
<h3 class="text-xl font-bold mb-2">Install the Extension</h3>
<p class="text-gray-400">Add Prompt Enhancer to your Chrome browser with a single click from the Chrome Web Store.</p>
</div>
</div>
<div class="flex flex-col md:flex-row items-start mb-12">
<div class="step-number bg-primary text-white rounded-full font-bold text-xl mb-4 md:mb-0 md:mr-6">2</div>
<div class="flex-1">
<h3 class="text-xl font-bold mb-2">Write Your Prompt</h3>
<p class="text-gray-400">Type your idea or basic prompt into any AI platform - no need to spend time perfecting it.</p>
</div>
</div>
<div class="flex flex-col md:flex-row items-start mb-12">
<div class="step-number bg-primary text-white rounded-full font-bold text-xl mb-4 md:mb-0 md:mr-6">3</div>
<div class="flex-1">
<h3 class="text-xl font-bold mb-2">Enhance with One Click</h3>
<p class="text-gray-400">Click the Prompt Enhancer icon to instantly transform your prompt into a more effective version.</p>
</div>
</div>
<div class="flex flex-col md:flex-row items-start">
<div class="step-number bg-primary text-white rounded-full font-bold text-xl mb-4 md:mb-0 md:mr-6">4</div>
<div class="flex-1">
<h3 class="text-xl font-bold mb-2">Get Better Results</h3>
<p class="text-gray-400">Submit your enhanced prompt and receive more accurate, detailed, and useful responses from AI.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Waitlist Form Section -->
<section class="py-16 gradient-bg text-white">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Join Our Waitlist</h2>
<p class="text-xl mb-10 max-w-2xl mx-auto opacity-90">Want to be among the first to try Prompt Enhancer? Leave your email and get access right after release!</p>
<div id="waitlistForm" class="bg-gray-800 rounded-xl p-8 shadow-2xl">
<form id="emailForm" class="space-y-6">
<div>
<input type="text" id="name" placeholder="Your Name" class="w-full px-4 py-3 rounded-lg border border-gray-700 focus:outline-none focus:ring-2 focus:ring-primary bg-gray-700 text-white">
</div>
<div>
<input type="email" id="email" placeholder="Your Email" required class="w-full px-4 py-3 rounded-lg border border-gray-700 focus:outline-none focus:ring-2 focus:ring-primary bg-gray-700 text-white">
</div>
<button type="submit" class="w-full bg-primary hover:bg-secondary text-white font-bold py-3 px-6 rounded-lg transition duration-300 transform hover:scale-[1.02]">
Join Waitlist
</button>
</form>
</div>
<div id="thankYouMessage" class="hidden bg-gray-800 rounded-xl p-8 shadow-2xl">
<div class="text-center">
<i class="fas fa-check-circle text-green-500 text-5xl mb-4"></i>
<h3 class="text-2xl font-bold text-white mb-4">Thank You for Joining!</h3>
<p class="text-gray-300 mb-6">You're on the list! We'll notify you as soon as Prompt Enhancer is available.</p>
<p class="text-gray-400 text-sm">In the meantime, follow us on social media for updates.</p>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-16 bg-gray-800">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">Frequently Asked Questions</h2>
<div class="max-w-3xl mx-auto">
<div class="faq-item border-b border-gray-700 py-6">
<div class="flex justify-between items-center cursor-pointer">
<h3 class="text-lg font-semibold">How does Prompt Enhancer improve my prompts?</h3>
<i class="fas fa-chevron-down text-primary"></i>
</div>
<div class="mt-4 text-gray-300 hidden">
<p>Our AI analyzes your prompt and automatically adds context, specificity, and structure to make it more effective. It identifies missing elements like target audience, desired length, format, and key points to address.</p>
</div>
</div>
<div class="faq-item border-b border-gray-700 py-6">
<div class="flex justify-between items-center cursor-pointer">
<h3 class="text-lg font-semibold">Which AI platforms does it work with?</h3>
<i class="fas fa-chevron-down text-primary"></i>
</div>
<div class="mt-4 text-gray-300 hidden">
<p>Prompt Enhancer works with any platform that accepts text input, including ChatGPT, Claude, Perplexity, Bard, and more. It's designed to be universally compatible with all major AI services.</p>
</div>
</div>
<div class="faq-item border-b border-gray-700 py-6">
<div class="flex justify-between items-center cursor-pointer">
<h3 class="text-lg font-semibold">Is my data safe with Prompt Enhancer?</h3>
<i class="fas fa-chevron-down text-primary"></i>
</div>
<div class="mt-4 text-gray-300 hidden">
<p>Absolutely. We don't store or share your prompts or personal information. All processing happens locally on your device, and we never collect your conversation data.</p>
</div>
</div>
<div class="faq-item border-b border-gray-700 py-6">
<div class="flex justify-between items-center cursor-pointer">
<h3 class="text-lg font-semibold">How much does Prompt Enhancer cost?</h3>
<i class="fas fa-chevron-down text-primary"></i>
</div>
<div class="mt-4 text-gray-300 hidden">
<p>Prompt Enhancer will be free to use for basic features. We may offer premium features in the future, but our core enhancement technology will always remain free.</p>
</div>
</div>
<div class="faq-item py-6">
<div class="flex justify-between items-center cursor-pointer">
<h3 class="text-lg font-semibold">When will Prompt Enhancer be available?</h3>
<i class="fas fa-chevron-down text-primary"></i>
</div>
<div class="mt-4 text-gray-300 hidden">
<p>We're currently in the final stages of development and testing. Join our waitlist to be notified as soon as it's available in the Chrome Web Store.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white py-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<h3 class="text-2xl font-bold">Prompt Enhancer</h3>
<p class="text-gray-400 mt-2">Enhance your AI prompts in seconds</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin text-xl"></i>
</a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-500 text-sm">© 2023 Prompt Enhancer. All rights reserved.</p>
<div class="mt-4 md:mt-0">
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm mr-4">Privacy Policy</a>
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm">Terms of Service</a>
</div>
</div>
</div>
</footer>
<script>
// FAQ Toggle
document.querySelectorAll('.faq-item').forEach(item => {
const header = item.querySelector('h3');
const icon = item.querySelector('i');
const content = item.querySelector('div:last-child');
item.addEventListener('click', () => {
const isActive = item.classList.contains('active');
// Close all items
document.querySelectorAll('.faq-item').forEach(i => {
i.classList.remove('active');
i.querySelector('i').classList.remove('fa-chevron-up');
i.querySelector('i').classList.add('fa-chevron-down');
i.querySelector('div:last-child').classList.add('hidden');
});
// If clicked item wasn't active, open it
if (!isActive) {
item.classList.add('active');
icon.classList.remove('fa-chevron-down');
icon.classList.add('fa-chevron-up');
content.classList.remove('hidden');
}
});
});
// Waitlist Form Submission
document.getElementById('emailForm').addEventListener('submit', function(e) {
e.preventDefault();
// Simple validation
const email = document.getElementById('email').value;
if (!email) return;
// Show thank you message
document.getElementById('waitlistForm').classList.add('hidden');
document.getElementById('thankYouMessage').classList.remove('hidden');
// Reset form
this.reset();
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).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=timsmykov/prompt-enhancer" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>