'use client';
import React from 'react';
import * as Dialog from '@radix-ui/react-dialog';
import { SiKofi, SiGithubsponsors } from 'react-icons/si';
import { FaHeart, FaTimes } from 'react-icons/fa';
const KOFI_URL = 'https://ko-fi.com/viren070';
const SPONSORS_URL = 'https://github.com/sponsors/Viren070';
function DonateDialogContent() {
return (
Close
💖
Support AIOStreams
AIOStreams is a solo project built in my free time. If you find it
useful, please consider supporting my work — it helps keep the
project alive and improving!
);
}
/**
* Full donate button with text label — used in home page CTA.
*/
export function DonateButton({ className }: { className?: string }) {
return (
);
}
/**
* Icon-only donate button — used in the navbar / sidebar via type: 'custom' link.
*/
export function DonateIconButton() {
return (
);
}