'use client' import { useTranslations } from 'next-intl' import { Header } from '@/components/layout/Header' import { Button } from '@/components/ui/button' import { Zap, Target, Layers, BarChart3, Check } from 'lucide-react' export default function Home() { const t = useTranslations('home') const tPricing = useTranslations('pricing') return (
{/* Hero Section */}

{t('hero.title')}

{t('hero.subtitle')}

{/* Features Section */}

{t('features.title')}

Professional tools for prompt engineering and management

{t('features.promptManager.title')}

{t('features.promptManager.description')}

{t('features.versionControl.title')}

{t('features.versionControl.description')}

{t('features.testing.title')}

{t('features.testing.description')}

Team Collaboration

Share prompts, collaborate with team members, and maintain quality standards.

{/* Pricing Section */}

{tPricing('title')}

Choose the plan that fits your needs

{tPricing('free.title')}

{tPricing('free.price')}

Perfect for getting started

  • 20 Prompt Limit
  • 3 Versions per Prompt
  • $5 AI Credit Monthly
Popular

{tPricing('pro.title')}

{tPricing('pro.price')}

per month

  • 500 Prompt Limit
  • 10 Versions per Prompt
  • $20 AI Credit Monthly
  • Priority Support
{/* Footer */}
) }