diff --git a/app/ui/invitations/board.tsx b/app/ui/invitations/board.tsx
index c151cbc..36f8fda 100644
--- a/app/ui/invitations/board.tsx
+++ b/app/ui/invitations/board.tsx
@@ -25,48 +25,48 @@ export default function InvitationsBoard({ guests, invitations }: {
}
return (
-
+
{/* Left Column: Guests */}
-
-
Guests
-
- {availableGuests.map((guest, index) => (
- -
-
{guest.name}
-
- ))}
-
+
+
Guests
+
+ {availableGuests.map((guest, index) => (
+ -
+
{guest.name}
+
+ ))}
+
{/* Right Column: Invitations */}
-
-
Invitations
+
+
Invitations
-
+
+
+ {invitations.map((invitation, index) => (
+
- Create New Invitation
-
-
-
- {invitations.map((invitation, index) => (
-
-
- {invitation.guests.map((guest) => (
- - {guest.name}
- ))}
-
-
+
+ {invitation.guests.map((guest) => (
+ - {guest.name}
))}
+
+ ))}
+
);