'use client' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { useLanguage } from '@/lib/i18n'; export default function SupportPage() { const { t } = useLanguage(); return (

{t('support.title')}

{t('support.description')}

{t('support.buyMeACoffee')}

{t('support.donationDescription')}

{t('support.kofiDescription')}

💚 {t('support.sponsorOnGithub')}

{t('support.sponsorDescription')}

{t('support.githubDescription')}

{t('support.howSupportHelps')}

💰 {t('support.directImpact')}

  • ☕ Keeps me fueled with coffee
  • 🐛 Covers hosting and server costs
  • ✨ Funds development of new features
  • 📚 Improves documentation
  • 🌍 Keeps Memento 100% open-source

🎁 {t('support.sponsorPerks')}

  • 🥉 $5/month - Bronze: Name in supporters list
  • 🥈 $15/month - Silver: Priority feature requests
  • 🥇 $50/month - Gold: Logo in footer, priority support
  • 💎 $100/month - Platinum: Custom features, consulting
💡 {t('support.transparency')}

{t('support.transparencyDescription')}

{t('support.hostingServers')} ~$20/month
{t('support.domainSSL')} ~$15/year
{t('support.aiApiCosts')} ~$30/month
{t('support.totalExpenses')} ~$50/month

Any amount beyond these costs goes directly into improving Memento and funding new features. Thank you for your support! 💚

{t('support.otherWaysTitle')}

); }