diff --git a/frontend/src/components/EventList.tsx b/frontend/src/components/EventList.tsx index 104b765..6f7c953 100644 --- a/frontend/src/components/EventList.tsx +++ b/frontend/src/components/EventList.tsx @@ -8,7 +8,7 @@ import { Typography, Grid, CardActions, - IconButton, + Container, } from '@mui/material'; import AdminPanelSettingsIcon from '@mui/icons-material/AdminPanelSettings'; import VisibilityIcon from '@mui/icons-material/Visibility'; @@ -50,74 +50,92 @@ const EventList: React.FC = () => { return ( - - - Events + + + RSVP Manager + + + Welcome to RSVP Manager! Create and manage your events with ease. + Organize gatherings, track attendance, and coordinate items that guests can bring. + Perfect for parties, meetings, and any event that needs RSVP coordination. - + - - {events.map((event) => ( - - handleEventClick(event)} - sx={{ - cursor: 'pointer', - '&:hover': { - boxShadow: 6, - } - }} - > - - - {event.title} - - - {new Date(event.date).toLocaleDateString()} at {event.location} - - - {event.description} - - - - - - - + + + {event.title} + + + {new Date(event.date).toLocaleDateString()} at {event.location} + + + {event.description} + + + + + + + + + ))} - ))} - + + )} ); };