mirror of https://github.com/kern/filepizza
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
918 B
TypeScript
37 lines
918 B
TypeScript
import React from 'react'
|
|
|
|
export const Footer: React.FC = () => (
|
|
<footer className="footer">
|
|
<p>
|
|
<strong>Like FilePizza?</strong> Support its development!{' '}
|
|
<a
|
|
href="https://commerce.coinbase.com/checkout/247b6ffe-fb4e-47a8-9a76-e6b7ef83ea22"
|
|
className="donate-button"
|
|
>
|
|
donate
|
|
</a>
|
|
</p>
|
|
|
|
<p className="byline">
|
|
Cooked up by{' '}
|
|
<a href="http://kern.io" target="_blank">
|
|
Alex Kern
|
|
</a>{' '}
|
|
&{' '}
|
|
<a href="http://neeraj.io" target="_blank">
|
|
Neeraj Baid
|
|
</a>{' '}
|
|
while eating <strong>Sliver</strong> @ UC Berkeley ·{' '}
|
|
<a href="https://github.com/kern/filepizza#faq" target="_blank">
|
|
FAQ
|
|
</a>{' '}
|
|
·{' '}
|
|
<a href="https://github.com/kern/filepizza" target="_blank">
|
|
Fork us
|
|
</a>
|
|
</p>
|
|
</footer>
|
|
)
|
|
|
|
export default Footer
|