This commit is contained in:
Alexey Kasyanchuk
2017-01-16 17:12:40 +03:00
parent 7d72fba330
commit 55fca4caec
6 changed files with 58 additions and 7 deletions

14
src/footer.js Normal file
View File

@ -0,0 +1,14 @@
import React from 'react';
export default (props) => {
return (
<div className='column center' style={{color: 'grey', marginTop: '12px'}}>
<div className='clickable pad0-75 fs0-75' onClick={() => {
window.router('/DMCA');
}}>
DMCA / Copyright
</div>
<div className='fs0-75 pad0-75 break-word donation-line' style={{color: 'grey'}}>Donation to support project (bitcoin): 1Ega5zeCSMPgyDn6fEMMiuGoqNNpS53ipK</div>
</div>
)
}