From 705dd718662ecce92db884ef72bfa9d44fdf91bf Mon Sep 17 00:00:00 2001 From: MrFry Date: Tue, 14 Apr 2020 09:40:29 +0200 Subject: [PATCH] Small thanks page facelift --- src/pages/thanks.js | 12 ++++++++---- src/pages/thanks.module.css | 10 ++++++++++ 2 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 src/pages/thanks.module.css 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; +}