diff --git a/pages/auth/forgot-password/index.tsx b/pages/auth/forgot-password/index.tsx index 98a60bbe..f3a29636 100644 --- a/pages/auth/forgot-password/index.tsx +++ b/pages/auth/forgot-password/index.tsx @@ -113,7 +113,7 @@ export default function Page({ csrfToken }) { diff --git a/pages/auth/login.tsx b/pages/auth/login.tsx index fbc608a8..bf83b392 100644 --- a/pages/auth/login.tsx +++ b/pages/auth/login.tsx @@ -10,7 +10,7 @@ export default function Login({ csrfToken }) {
- Calendso Logo + Calendso Logo

Sign in to your account

@@ -69,7 +69,10 @@ export default function Login({ csrfToken }) {
- Don't have an account? Create an account + Don't have an account? {/* replace this with your account creation flow */} + + Create an account +
diff --git a/pages/bookings/index.tsx b/pages/bookings/index.tsx index 3ed8272c..5ad51831 100644 --- a/pages/bookings/index.tsx +++ b/pages/bookings/index.tsx @@ -32,7 +32,7 @@ export default function Bookings({ bookings }) { -
+
@@ -43,10 +43,7 @@ export default function Bookings({ bookings }) { .concat(bookings.filter((booking) => booking.confirmed || booking.rejected)) .map((booking) => ( - + {!booking.confirmed && !booking.rejected && ( Unconfirmed @@ -56,13 +53,20 @@ export default function Bookings({ bookings }) { {booking.attendees[0].name}
{booking.attendees[0].email}
+
+ {booking.title} +
-
{booking.title}
-
+
+ {booking.title} +
+
You and {booking.attendees[0].name}
@@ -74,28 +78,28 @@ export default function Bookings({ bookings }) { {!booking.confirmed && !booking.rejected && ( <> - confirmBookingHandler(booking, true)} - className="cursor-pointer text-blue-600 hover:text-blue-900"> + className="text-xs sm:text-sm inline-flex items-center px-4 py-2 border-transparent font-medium rounded-sm shadow-sm text-neutral-700 bg-white hover:bg-neutral-100 border border-neutral-300 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-black ml-2"> Confirm - - + )} {booking.confirmed && !booking.rejected && ( <> + className="text-xs sm:text-sm inline-flex items-center px-4 py-2 border-transparent font-medium rounded-sm shadow-sm text-neutral-700 bg-white hover:bg-neutral-100 border border-neutral-300 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-black ml-2"> Cancel + className="text-xs sm:text-sm inline-flex items-center px-4 py-2 border-transparent font-medium rounded-sm shadow-sm text-neutral-700 bg-white hover:bg-neutral-100 border border-neutral-300 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-black ml-2"> Reschedule diff --git a/pages/integrations/[integration].tsx b/pages/integrations/[integration].tsx index 52f14144..8cdaa93a 100644 --- a/pages/integrations/[integration].tsx +++ b/pages/integrations/[integration].tsx @@ -40,10 +40,7 @@ export default function integration(props) { - -
-

Manage and delete integrations.

-
+
diff --git a/pages/integrations/index.tsx b/pages/integrations/index.tsx index 0740271a..ae8c5457 100644 --- a/pages/integrations/index.tsx +++ b/pages/integrations/index.tsx @@ -16,6 +16,7 @@ import { Switch } from "@headlessui/react"; export default function Home({ integrations }) { const [session, loading] = useSession(); + const [showAddModal, setShowAddModal] = useState(false); const [showSelectCalendarModal, setShowSelectCalendarModal] = useState(false); const [selectableCalendars, setSelectableCalendars] = useState([]); @@ -86,7 +87,11 @@ export default function Home({ integrations }) { useEffect(loadCalendars, [integrations]); if (loading) { - return
; + return ( +
+ +
+ ); } return ( @@ -99,8 +104,8 @@ export default function Home({ integrations }) { -
+ noPaddingBottom + CTA={ -
+ }>
{integrations.filter((ig) => ig.credential).length !== 0 ? (