summaryrefslogtreecommitdiff
path: root/client/src/components/Registry.tsx
blob: 3414e9d83c4fd8db6d7ffc95ef3e4d7e4d407582 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import React from 'react';
import { Button, Paper } 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',
      }}
    >
      <Paper
        elevation={3}
        sx={{
          '&:hover': { boxShadow: 5 },
          width: { xs: '90%', md: 400 },
          display: 'flex',
          justifyContent: 'center',
          alignItems: 'center',
          flexDirection: 'column',
          px: 1,
          pb: 2,
          borderRadius: 2,
        }}
      >
        <p style={{ textAlign: 'center' }}>
          Thank you for your generous gifts! We look forward to seeing you at
          the wedding.
        </p>
        <Button variant="contained" endIcon={<LaunchIcon />}>
          Registry
        </Button>
      </Paper>
    </div>
  );
}

export default Registry;