import { Navigation } from "@/components/navigation" import { SparkleEffect } from "@/components/sparkle-effect" import { Card } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { Heart, Star, Sparkles, Gift } from "lucide-react" export default function SponsorPage() { const tiers = [ { name: "Sparkle Friend", icon: Sparkles, amount: "$5/month", color: "text-primary", benefits: [ "Thank you message on social media", "Early access to new artwork", "Monthly digital wallpaper", "Supporter badge on website", ], }, { name: "Rainbow Supporter", icon: Star, amount: "$15/month", color: "text-secondary", benefits: [ "Everything from Sparkle Friend", "Exclusive behind-the-scenes content", "Monthly art process videos", "Vote on next artwork themes", "Personalized thank you card", ], }, { name: "Magic Patron", icon: Heart, amount: "$30/month", color: "text-accent", benefits: [ "Everything from Rainbow Supporter", "Custom artwork request once per year", "Physical print of your favorite piece", "Video call to see art process live", "Name in special supporters gallery", ], }, ] return (
{/* Header */}

Become a Sponsor

Help support my art journey and get amazing rewards! 💖✨

{/* Why Sponsor Section */}

Why Sponsor Me?

Your support helps me continue creating amazing anime art and pursuing my dream of becoming a professional artist! With your help, I can:

  • 🎨 Buy better art supplies and tools
  • 📚 Take art classes and learn new techniques
  • 💻 Get digital art software and equipment
  • ✨ Create more artwork to share with everyone
  • 🌟 Attend art workshops and conventions
{/* Sponsorship Tiers */}

Choose Your Support Level

{tiers.map((tier) => { const Icon = tier.icon return (

{tier.name}

{tier.amount}

    {tier.benefits.map((benefit, index) => (
  • ✓ {benefit}
  • ))}
) })}
{/* One-Time Support */}

Prefer a One-Time Gift?

You can also support my art with a one-time contribution of any amount! Every bit helps me continue creating magical anime art! 🌈✨

{/* Thank You Message */}

Thank You! 💖

Your support means everything to me and helps me keep creating art that brings joy to others. Together, we can make the world more colorful and magical! Thank you for believing in my dreams! ✨🌟

) }