summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-08-03 15:03:58 -0700
committerMichael Hunteman <michael@huntm.net>2024-08-03 15:03:58 -0700
commitb7d6f8a28652f4082549ca06a945e9d3e7a249a3 (patch)
tree5f73bbab59bb79b80479f96f3507fb1d027e5686 /client
parent61d4d87beb848ae416bbb08065b6e0b54e2b8d70 (diff)
Add registry page
Diffstat (limited to 'client')
-rw-r--r--client/src/components/Registry.tsx21
1 files changed, 19 insertions, 2 deletions
diff --git a/client/src/components/Registry.tsx b/client/src/components/Registry.tsx
index 038bd1d..dd8ff36 100644
--- a/client/src/components/Registry.tsx
+++ b/client/src/components/Registry.tsx
@@ -1,9 +1,26 @@
import React from 'react';
+import { Button } from '@mui/material';
+import LaunchIcon from '@mui/icons-material/Launch';
function Registry() {
return (
- <div style={{ height: '100%', width: '100%', display: 'flex' }}>
- <p style={{ marginTop: 64 }}>Registry</p>
+ <div
+ style={{
+ height: '100%',
+ width: '100%',
+ display: 'flex',
+ justifyContent: 'center',
+ alignItems: 'center',
+ flexDirection: 'column',
+ }}
+ >
+ <p style={{ width: '90%', textAlign: 'center' }}>
+ Thank you for your generous gifts! We look forward to seeing you at the
+ wedding.
+ </p>
+ <Button variant="contained" endIcon={<LaunchIcon />}>
+ Go to Registry
+ </Button>
</div>
);
}