您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

sponsorware.tsx 381B

12345678910111213141516
  1. export default function Sponsorware() {
  2. return (
  3. <div>
  4. Hey, this site is for sponsors only for the moment. Sorry! If you're
  5. really curious,{' '}
  6. <a
  7. href="https://github.com/sponsors/steveruizok"
  8. target="_blank"
  9. rel="noopener noreferrer"
  10. >
  11. Sponsor me on Github
  12. </a>{' '}
  13. and try that again.
  14. </div>
  15. )
  16. }