16 lines
381 B
TypeScript
16 lines
381 B
TypeScript
export default function Sponsorware() {
|
|
return (
|
|
<div>
|
|
Hey, this site is for sponsors only for the moment. Sorry! If you're
|
|
really curious,{' '}
|
|
<a
|
|
href="https://github.com/sponsors/steveruizok"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
Sponsor me on Github
|
|
</a>{' '}
|
|
and try that again.
|
|
</div>
|
|
)
|
|
}
|