Selaa lähdekoodia

feat(donation-alert): update donation message to include GitHub Sponsors and Ko-fi links for support options
chore(FUNDING.yml): add GitHub Sponsors to funding sources for better visibility

Mathias 1 kuukausi sitten
vanhempi
commit
f633527c4e
2 muutettua tiedostoa jossa 11 lisäystä ja 2 poistoa
  1. 1 0
      .github/FUNDING.yml
  2. 10 2
      src/components/ui/donation-alert.tsx

+ 1 - 0
.github/FUNDING.yml

@@ -1,2 +1,3 @@
+github: snouzy
 ko_fi: workoutcool
 # buy_me_a_coffee: workout_cool

+ 10 - 2
src/components/ui/donation-alert.tsx

@@ -19,13 +19,21 @@ export const DonationAlert = ({ className }: DonationAlertProps) => {
     >
       <AlertDescription className="flex items-center gap-1 italic text-base">
         <span className="whitespace-pre-line">
-          Keep Workout.cool free. Support us by making a{" "}
+          Keep Workout.cool free. Support us via{" "}
           <Link
             className="font-medium text-gray-900 underline hover:text-gray-700 dark:text-gray-200"
             href="https://ko-fi.com/workoutcool"
             target="_blank"
           >
-            donation
+            Ko-fi
+          </Link>{" "}
+          or{" "}
+          <Link
+            className="font-medium text-gray-900 underline hover:text-gray-700 dark:text-gray-200"
+            href="https://github.com/sponsors/snouzy"
+            target="_blank"
+          >
+            GitHub Sponsors
           </Link>
           .
         </span>