import { Button } from '../ui/button'; import { Modal } from '../ui/modal'; import { SiGithubsponsors } from 'react-icons/si'; import { SiKofi } from 'react-icons/si'; export function DonationModal({ open, onOpenChange, }: { open: boolean; onOpenChange: (open: boolean) => void; }) { const githubSponsorsUrl = 'https://github.com/sponsors/Viren070'; const kofiUrl = 'https://ko-fi.com/Viren070'; return (
💖

Donate to Me

AIOStreams is a solo project built and maintained by me in my free time. If you find it useful, please consider supporting my work. Your donation helps me keep the project alive and improve it for everyone!

); }