diff options
-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? |