Small thanks page facelift

This commit is contained in:
MrFry 2020-04-14 09:40:29 +02:00
parent 83ff9576e7
commit 705dd71866
2 changed files with 18 additions and 4 deletions

View file

@ -1,11 +1,15 @@
// TODO: prettier page for donate import styles from './thanks.module.css'
import constants from '../constants.json'
export default function Thanks () { export default function Thanks () {
return ( return (
<div> <div>
<center> <div className={styles.container}>
<span>Thanks for the donate</span> <div className={styles.title}>Thanks for the donate!</div>
</center> <div>
<img src={`${constants.siteUrl}img/thanks.gif`} />
</div>
</div>
</div> </div>
) )
} }

View file

@ -0,0 +1,10 @@
.title {
font-size: 30px;
color: white;
margin: 10px;
}
.container {
text-align: center;
margin: 50px;
}