summaryrefslogtreecommitdiff
path: root/client/src/components/Registry.tsx
blob: dd8ff3627126bc1882aa11724fc777dd24b29f1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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',
        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>
  );
}

export default Registry;