);
}
// Features Section
function FeaturesSection() {
const features = [
{
icon: ,
title: "Lightning Fast",
description: "Generate high-quality images in seconds with our optimized AI models."
},
{
icon: ,
title: "Multiple Styles",
description: "Choose from photorealistic, anime, 3D render, watercolor, and more artistic styles."
},
{
icon: ,
title: "Easy Download",
description: "Download your images in high resolution formats ready for any use case."
},
{
icon: ,
title: "Save Favorites",
description: "Keep track of your best creations with our favorites and history system."
}
];
return (
Powerful features for creators
Everything you need to bring your creative vision to life with professional-grade AI image generation.
{features.map((feature, index) => (
{feature.icon}
{feature.title}
{feature.description}
))}
);
}
// Testimonials Section
function TestimonialsSection() {
const testimonials = [
{
name: "Sarah Chen",
role: "Digital Artist",
content: "PixelForge AI has revolutionized my creative workflow. The quality and speed are incredible!",
rating: 5
},
{
name: "Marcus Rodriguez",
role: "Marketing Director",
content: "Perfect for creating unique marketing visuals. Our campaign engagement increased by 300%.",
rating: 5
},
{
name: "Emma Thompson",
role: "Content Creator",
content: "The variety of styles available is amazing. I can create any visual concept I imagine.",
rating: 5
}
];
return (
Loved by creators worldwide
Join thousands of artists, designers, and creators using PixelForge AI
);
}
// FAQ Section
function FAQSection() {
const [openIndex, setOpenIndex] = useState(null);
const faqs = [
{
question: "How many free credits do I get?",
answer: "Every new user gets 20 free credits to start creating immediately. Each image generation typically uses 1 credit."
},
{
question: "What image formats are supported?",
answer: "All generated images are provided in high-quality PNG format. You can download them directly or share via our built-in sharing features."
},
{
question: "Can I use the images commercially?",
answer: "Yes! All images generated with PixelForge AI can be used for both personal and commercial purposes without attribution required."
},
{
question: "How long does image generation take?",
answer: "Most images are generated within 10-30 seconds depending on complexity and current server load. We prioritize speed without compromising quality."
},
{
question: "What if I'm not satisfied with a generated image?",
answer: "You can always regenerate with modified prompts. We also offer prompt suggestions and style presets to help you achieve the perfect result."
}
];
return (
Frequently asked questions
Everything you need to know about PixelForge AI
{faqs.map((faq, index) => (
{openIndex === index && (
{faq.answer}
)}
))}
);
}
// Footer
function Footer() {
return (
);
}
// Main Page Component
export default function HomePage() {
return (
Comments
Post a Comment