import React from 'react'; import { useSEO } from '../hooks/useSEO'; const About: React.FC = () => { // SEO optimization for About page useSEO({ title: 'About AiFigure - AI Action Figure Generator | Free AI Art Creation Platform', description: 'Learn about AiFigure, the leading AI-powered platform for creating custom action figures. Using Google\'s Gemini AI technology to transform photos into stunning anime-style collectibles. Free to start, professional quality results.', keywords: 'about AiFigure, AI action figure generator, Google Gemini AI, anime action figures, AI art platform, custom collectibles creator, free AI image generation', ogTitle: 'About AiFigure - AI Action Figure Generator | Free AI Art Creation Platform', ogDescription: 'Learn about AiFigure, the leading AI-powered platform for creating custom action figures. Using Google\'s Gemini AI technology to transform photos into stunning anime-style collectibles.', ogImage: 'https://aifigure.com/about-og-image.jpg', ogUrl: window.location.href, twitterTitle: 'About AiFigure - AI Action Figure Generator | Free AI Art Creation Platform', twitterDescription: 'Learn about AiFigure, the leading AI-powered platform for creating custom action figures. Using Google\'s Gemini AI technology to transform photos into stunning anime-style collectibles.', twitterImage: 'https://aifigure.com/about-og-image.jpg', canonical: window.location.href, type: 'website', }); const features = [ { title: 'AI-Powered Generation', description: 'Using Google\'s Gemini 2.5 Flash with image preview capabilities to transform your photos into stunning anime action figures.', icon: '🤖' }, { title: 'Token-Based System', description: 'Flexible pricing with multiple subscription tiers and token bundles to fit your creative needs.', icon: '🪙' }, { title: 'Community Gallery', description: 'Share your creations with the community and get inspired by other artists\' amazing work.', icon: '🎨' }, { title: 'Professional Quality', description: 'Generate high-resolution images with professional-grade AI models and advanced customization options.', icon: '⭐' } ]; const techStack = [ { name: 'React 19', description: 'Modern React with latest features' }, { name: 'TypeScript', description: 'Type-safe development' }, { name: 'Tailwind CSS', description: 'Utility-first styling' }, { name: 'Firebase', description: 'Backend services & authentication' }, { name: 'Gemini AI', description: 'Google\'s latest AI model' }, { name: 'Vite', description: 'Fast build tool & dev server' } ]; return (
{/* Hero Section */}

About PicGen

Transform your photos into stunning anime action figures using cutting-edge AI technology. Join our creative community and bring your imagination to life.

{/* Features Grid */}

Key Features

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
{/* Technology Stack */}

Technology Stack

{techStack.map((tech, index) => (

{tech.name}

{tech.description}

))}
{/* Mission Section */}

Our Mission

We're on a mission to democratize AI-powered creativity, making professional-grade image generation accessible to everyone. Whether you're an artist, hobbyist, or just love creating cool stuff, PicGen empowers you to transform your ideas into reality with just a few clicks.

{/* Call to Action */}

Ready to Create?

Join thousands of creators who are already using PicGen to bring their visions to life.

); }; export default About;