import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Heart, Coffee, Zap } from "lucide-react"; import { isSelfHostedMode } from "@/lib/deployment-mode"; export function GitHubSponsors() { // Only show in self-hosted mode if (!isSelfHostedMode()) { return null; } return ( Support Gitea Mirror

Gitea Mirror is open source and free to use. If you find it helpful, consider supporting the project!

Your support helps maintain and improve the project

); } // Smaller inline sponsor button for headers/navbars export function SponsorButton() { if (!isSelfHostedMode()) { return null; } return ( ); }