diff --git a/src/pages/thanks.js b/src/pages/thanks.js index 8b70a50..2a16764 100644 --- a/src/pages/thanks.js +++ b/src/pages/thanks.js @@ -1,11 +1,15 @@ -// TODO: prettier page for donate +import styles from './thanks.module.css' +import constants from '../constants.json' export default function Thanks () { return (
-
- Thanks for the donate -
+
+
Thanks for the donate!
+
+ +
+
) } diff --git a/src/pages/thanks.module.css b/src/pages/thanks.module.css new file mode 100644 index 0000000..d7d35aa --- /dev/null +++ b/src/pages/thanks.module.css @@ -0,0 +1,10 @@ +.title { + font-size: 30px; + color: white; + margin: 10px; +} + +.container { + text-align: center; + margin: 50px; +}