diff options
author | Michael Hunteman <michael@huntm.net> | 2024-03-03 13:17:26 -0800 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2024-03-03 13:17:26 -0800 |
commit | 6db1f3fd6aaa2ea56e6344bc3efaea32ca16f11e (patch) | |
tree | 698db6c07cdca9367c0b0d077e09616c886a81d1 | |
parent | 37768908d2271d00d6d87fef24ad6e9ac17c97e8 (diff) |
Add RSVP text
-rw-r--r-- | src/components/RsvpForm.tsx | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/components/RsvpForm.tsx b/src/components/RsvpForm.tsx index 6c43ae8..53bc97d 100644 --- a/src/components/RsvpForm.tsx +++ b/src/components/RsvpForm.tsx @@ -38,21 +38,20 @@ function RsvpForm() { return ( <Container component="form" maxWidth="sm" noValidate onSubmit={handleSubmit(onSubmit)}> <Grid container spacing={2} sx={{ mt: 8 }}> - <Grid item xs={12} md={4} lg={4}> - <Typography>Date: April 14, 2025</Typography> - </Grid> - <Grid item xs={12} md={4} lg={4}> - <Typography>Location: </Typography> - </Grid> - <Grid item xs={12} md={4} lg={4}> - <Typography>RSVP Deadline: </Typography> + <Grid item xs={12}> + <Typography paragraph> + Please RSVP for the wedding by March 10, 2025. + The ceremony will commence at 3 pm in ... + The reception will follow at 5 pm in A Venue on the Ridge. + </Typography> </Grid> - <Grid item lg={12}> + <Grid item xs={12}> <FormControl> <Box sx={{ display: "flex", flexDirection: "row", - alignItems: "center" }} + alignItems: "center", + ml: { xs: 6, lg: 18 } }} > <FormLabel sx={{ mr: 2 }} error={!!errors.attendance} required> Will you attend? |