diff --git a/src/components/DraggableEvent.tsx b/src/components/DraggableEvent.tsx
index 7e60a09..43b032b 100644
--- a/src/components/DraggableEvent.tsx
+++ b/src/components/DraggableEvent.tsx
@@ -71,6 +71,7 @@ export default function DraggableEvent({
onClick={() => !isDragging && onEventClick({ event, date })}
className="bg-white p-4 rounded shadow-md mb-2 cursor-grab active:cursor-grabbing transition-all relative select-none"
whileHover={{ scale: 1.01 }}
+ transition={{ duration: 1.2 }}
style={{
opacity: isDragging ? 0.7 : 1,
userSelect: 'none',
@@ -80,18 +81,30 @@ export default function DraggableEvent({
>
{event.imageUrl && (
-

)}
-
+
{event.time}
-
+
- {event.title}
+
+ {event.title}
+
);
}
\ No newline at end of file
diff --git a/src/components/EventModal.tsx b/src/components/EventModal.tsx
index 477ab0c..c981acc 100644
--- a/src/components/EventModal.tsx
+++ b/src/components/EventModal.tsx
@@ -27,6 +27,7 @@ const EventModal = ({ event, date, onClose }: EventModalProps) => {
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
+ transition={{ duration: 1.2 }}
>
{
initial={{ scale: 0.95 }}
animate={{ scale: 1 }}
exit={{ scale: 0.95 }}
+ transition={{ duration: 1.2 }}
>
{event.imageUrl && (
-
)}
- {event.title}
+
+ {event.title}
+
Date: {formattedDate}
- Time: {event.time}
+
+ Time: {event.time}
+
{event.description && (
Description: {event.description}