diff --git a/pages/bookings/index.tsx b/pages/bookings/index.tsx
index f21bd5ac..fe5e27a4 100644
--- a/pages/bookings/index.tsx
+++ b/pages/bookings/index.tsx
@@ -8,6 +8,7 @@ import { Fragment } from "react";
import { Menu, Transition } from "@headlessui/react";
import { DotsHorizontalIcon } from "@heroicons/react/solid";
import classNames from "@lib/classNames";
+import { ClockIcon, XIcon } from "@heroicons/react/outline";
export default function Bookings({ bookings }) {
const [, loading] = useSession();
@@ -51,7 +52,7 @@ export default function Bookings({ bookings }) {
+ className="hidden sm:table-cell px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Date
|
@@ -74,9 +75,22 @@ export default function Bookings({ bookings }) {
{booking.title}
- {booking.attendees[0].email}
+
+
+ {dayjs(booking.startTime).format("D MMMM YYYY")}:{" "}
+
+ {dayjs(booking.startTime).format("HH:mm")} -{" "}
+ {dayjs(booking.endTime).format("HH:mm")}
+
+
+
+
- |
+ |
{dayjs(booking.startTime).format("D MMMM YYYY")}
@@ -105,11 +119,19 @@ export default function Bookings({ bookings }) {
+
Cancel
+
Reschedule
|